1 instantiation of StreamFormatter
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\StreamFormatter.cs (1)
33return new StreamFormatter(messageDescription, streamPart, operationName, isRequest);
13 references to StreamFormatter
dotnet-svcutil-lib (13)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationFormatter.cs (10)
25protected StreamFormatter requestStreamFormatter, replyStreamFormatter; 43requestStreamFormatter = StreamFormatter.Create(_requestDescription, _operationName, true/*isRequest*/); 45replyStreamFormatter = StreamFormatter.Create(_replyDescription, _operationName, false/*isResponse*/); 228StreamFormatter streamFormatter; 323private void SetupStreamAndMessageDescription(bool isRequest, out StreamFormatter streamFormatter, out MessageDescription messageDescription) 340StreamFormatter streamFormatter; 356StreamFormatter streamFormatter; 385private StreamFormatter _streamFormatter; 394StreamFormatter streamFormatter; 714StreamFormatter streamFormatter = isRequest ? operationFormatter.requestStreamFormatter : operationFormatter.replyStreamFormatter;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\StreamFormatter.cs (3)
28internal static StreamFormatter Create(MessageDescription messageDescription, string operationName, bool isRequest) 98private StreamFormatter _streamFormatter; 101internal SerializeAsyncResult(StreamFormatter streamFormatter, XmlDictionaryWriter writer, object[] parameters, object returnValue,