ProtoBufFormatter отсутствует в пакете .netcore - PullRequest
0 голосов
/ 08 марта 2019

Я пытаюсь преобразовать этот код из .net 4.5.2 в стандарт .net

string requestURIAction = ....;
MIObjectSetType objectSet = new ....;
CancellationToken cancelToken = new....;
this.Formatter = new ProtoBufFormatter();

HttpResponseMessage response = await client.PostAsync(requestURIAction, objectSet, this.Formatter, cancelToken);

Я заменил пакет nuget WebApiContrib.Formatting.Protobuf на эквивалентную стандартную версию .net - WebAPiContrib.Core.Formatter.Protobuf

но ProtoBufFormatter не существует в WebAPiContrib.Core.Formatter.Protobuf Как я могу переписать его?

...