1 write to _replyDescription
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
34_replyDescription = description.Messages[1];
17 references to _replyDescription
dotnet-svcutil-lib (17)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationFormatter.cs (17)
37if (_replyDescription != null) 38stringCount += 2 + _replyDescription.Body.Parts.Count; 44if (_replyDescription != null) 45replyStreamFormatter = StreamFormatter.Create(_replyDescription, _operationName, false/*isResponse*/); 94get { return _replyDescription; } 118if (_replyDescription.IsTypedMessage) 120object typeMessageInstance = CreateTypedMessageInstance(_replyDescription.MessageType); 121TypedMessageParts typedMessageParts = new TypedMessageParts(typeMessageInstance, _replyDescription); 124GetPropertiesFromMessage(message, _replyDescription, parts); 125GetHeadersFromMessage(message, _replyDescription, parts, false/*isRequest*/); 135GetPropertiesFromMessage(message, _replyDescription, parameters); 136GetHeadersFromMessage(message, _replyDescription, parameters, false/*isRequest*/); 296if (_replyDescription.IsTypedMessage) 303TypedMessageParts typedMessageParts = new TypedMessageParts(result, _replyDescription); 318AddPropertiesToMessage(msg, _replyDescription, parts); 319AddHeadersToMessage(msg, _replyDescription, parts, false /*isRequest*/); 333messageDescription = _replyDescription;