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