1 instantiation of StreamFormatter
System.ServiceModel (1)
System\ServiceModel\Dispatcher\StreamFormatter.cs (1)
31
return new
StreamFormatter
(messageDescription, streamPart, operationName, isRequest);
14 references to StreamFormatter
System.ServiceModel (14)
System\ServiceModel\Description\MessageContractExporter.cs (2)
130
StreamFormatter
streamFormatter =
StreamFormatter
.Create(description, operation.Name, isRequest);
System\ServiceModel\Dispatcher\OperationFormatter.cs (9)
28
protected
StreamFormatter
requestStreamFormatter, replyStreamFormatter;
47
requestStreamFormatter =
StreamFormatter
.Create(requestDescription, operationName, true/*isRequest*/);
49
replyStreamFormatter =
StreamFormatter
.Create(replyDescription, operationName, false/*isResponse*/);
230
StreamFormatter
streamFormatter;
327
void SetupStreamAndMessageDescription(bool isRequest, out
StreamFormatter
streamFormatter, out MessageDescription messageDescription)
344
StreamFormatter
streamFormatter;
372
StreamFormatter
streamFormatter;
381
StreamFormatter
streamFormatter;
704
StreamFormatter
streamFormatter = isRequest ? operationFormatter.requestStreamFormatter : operationFormatter.replyStreamFormatter;
System\ServiceModel\Dispatcher\StreamFormatter.cs (3)
26
internal static
StreamFormatter
Create(MessageDescription messageDescription, string operationName, bool isRequest)
87
StreamFormatter
streamFormatter;
90
internal SerializeAsyncResult(
StreamFormatter
streamFormatter, XmlDictionaryWriter writer, object[] parameters, object returnValue,