1 write to replyDescription
System.ServiceModel (1)
System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
38
this.
replyDescription
= description.Messages[1];
17 references to replyDescription
System.ServiceModel (17)
System\ServiceModel\Dispatcher\OperationFormatter.cs (17)
41
if (
replyDescription
!= null)
42
stringCount += 2 +
replyDescription
.Body.Parts.Count;
48
if (
replyDescription
!= null)
49
replyStreamFormatter = StreamFormatter.Create(
replyDescription
, operationName, false/*isResponse*/);
92
get { return
replyDescription
; }
116
if (
replyDescription
.IsTypedMessage)
118
object typeMessageInstance = CreateTypedMessageInstance(
replyDescription
.MessageType);
119
TypedMessageParts typedMessageParts = new TypedMessageParts(typeMessageInstance,
replyDescription
);
122
GetPropertiesFromMessage(message,
replyDescription
, parts);
123
GetHeadersFromMessage(message,
replyDescription
, parts, false/*isRequest*/);
133
GetPropertiesFromMessage(message,
replyDescription
, parameters);
134
GetHeadersFromMessage(message,
replyDescription
, parameters, false/*isRequest*/);
298
if (
replyDescription
.IsTypedMessage)
305
TypedMessageParts typedMessageParts = new TypedMessageParts(result,
replyDescription
);
322
AddPropertiesToMessage(msg,
replyDescription
, parts);
323
AddHeadersToMessage(msg,
replyDescription
, parts, false /*isRequest*/);
337
messageDescription =
replyDescription
;