1 write to ReplyDescription
System.ServiceModel.Primitives (1)
System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
32ReplyDescription = description.Messages[1];
18 references to ReplyDescription
System.ServiceModel.Primitives (18)
System\ServiceModel\Dispatcher\DataContractSerializerOperationFormatter.cs (2)
100if (ReplyDescription != null) 102replyMessageInfo = CreateMessageInfo(dataContractFormatAttribute, ReplyDescription, _serializerFactory);
System\ServiceModel\Dispatcher\OperationFormatter.cs (16)
36if (ReplyDescription != null) 38stringCount += 2 + ReplyDescription.Body.Parts.Count; 45if (ReplyDescription != null) 47replyStreamFormatter = StreamFormatter.Create(ReplyDescription, _operationName, false/*isResponse*/); 125if (ReplyDescription.IsTypedMessage) 127object typeMessageInstance = CreateTypedMessageInstance(ReplyDescription.MessageType); 128TypedMessageParts typedMessageParts = new TypedMessageParts(typeMessageInstance, ReplyDescription); 131GetPropertiesFromMessage(message, ReplyDescription, parts); 132GetHeadersFromMessage(message, ReplyDescription, parts, false/*isRequest*/); 142GetPropertiesFromMessage(message, ReplyDescription, parameters); 143GetHeadersFromMessage(message, ReplyDescription, parameters, false/*isRequest*/); 316if (ReplyDescription.IsTypedMessage) 323TypedMessageParts typedMessageParts = new TypedMessageParts(result, ReplyDescription); 338AddPropertiesToMessage(msg, ReplyDescription, parts); 339AddHeadersToMessage(msg, ReplyDescription, parts, false /*isRequest*/); 353messageDescription = ReplyDescription;