6 writes to Reply
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (4)
765
rpc.
Reply
= _binder.Request(rpc.Request, rpc.TimeoutHelper.RemainingTime());
925
MessageLogger.LogMessage(ref rpc.
Reply
, MessageLoggingSource.ServiceLevelReceiveReply | MessageLoggingSource.LastChance);
940
if (operation.DeserializeReply && _clientRuntime.IsFault(ref rpc.
Reply
))
1863
Rpc.
Reply
= Rpc.Channel._binder.EndRequest(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (1)
94
_messageInspectors[i].AfterReceiveReply(ref rpc.
Reply
, rpc.Correlation[offset + i]);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyRpc.cs (1)
40
this.
Reply
= null;
18 references to Reply
dotnet-svcutil-lib (18)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (17)
767
if (rpc.
Reply
== null)
919
if (rpc.
Reply
!= null)
921
TraceUtility.MessageFlowAtMessageReceived(rpc.
Reply
, null, rpc.EventTraceActivity, false);
929
if ((operation.ReplyAction != MessageHeaders.WildcardAction) && !rpc.
Reply
.IsFault && rpc.
Reply
.Headers.Action != null)
931
if (String.CompareOrdinal(operation.ReplyAction, rpc.
Reply
.Headers.Action) != 0)
935
rpc.
Reply
.Headers.Action,
942
MessageFault fault = MessageFault.CreateFault(rpc.
Reply
, _clientRuntime.MaxFaultSize);
943
string action = rpc.
Reply
.Headers.Action;
944
if (action == rpc.
Reply
.Version.Addressing.DefaultFaultAction)
948
ThrowIfFaultUnderstood(rpc.
Reply
, fault, action, rpc.
Reply
.Version, rpc.Channel.GetProperty<FaultConverter>());
964
bool consumed = ((rpc.
Reply
!= null) && (rpc.
Reply
.State != MessageState.Created));
968
operationContext.SetClientReply(rpc.
Reply
, consumed);
972
rpc.
Reply
.Close();
1865
if (Rpc.
Reply
== null)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (1)
148
Message reply = rpc.
Reply
;