3 writes to Rpc
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (3)
810
HandleReply(sendResult.Rpc.Operation, ref sendResult.
Rpc
);
1663
Rpc
= new ProxyRpc(channel, operation, action, inputParameters, timeout);
1671
Rpc.Channel.PrepareCall(_operation, _isOneWay, ref
Rpc
);
34 references to Rpc
dotnet-svcutil-lib (34)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (34)
709
result.
Rpc
.Activity = serviceModelActivity;
712
TraceServiceChannelCallStart(result.
Rpc
.EventTraceActivity, false);
793
using (ServiceModelActivity rpcActivity = sendResult.
Rpc
.Activity)
797
if (sendResult.
Rpc
.Activity != null && DiagnosticUtility.ShouldUseActivity)
799
sendResult.
Rpc
.Activity.Resume();
801
if (sendResult.
Rpc
.Channel != this)
804
if (action != MessageHeaders.WildcardAction && action != sendResult.
Rpc
.Action)
809
sendResult.
Rpc
.OutputParameters = outs;
810
HandleReply(sendResult.
Rpc
.Operation, ref sendResult.Rpc);
812
if (sendResult.
Rpc
.Activity != null)
814
sendResult.
Rpc
.Activity = null;
816
return sendResult.
Rpc
.ReturnValue;
1671
Rpc
.Channel.PrepareCall(_operation, _isOneWay, ref Rpc);
1673
if (
Rpc
.Channel._explicitlyOpened)
1675
Rpc
.Channel.ThrowIfOpening();
1676
Rpc
.Channel.ThrowIfDisposedOrNotOpen();
1687
IAsyncResult result =
Rpc
.Channel.BeginEnsureDisplayUI(s_ensureInteractiveInitCallback, this);
1709
Rpc
.Channel.EndEnsureDisplayUI(result);
1732
TimeSpan timeout =
Rpc
.TimeoutHelper.RemainingTime();
1738
result =
Rpc
.Channel.BeginEnsureOpened(timeout, s_ensureOpenCallback, this);
1770
using (ServiceModelActivity.BoundOperation(
Rpc
.Activity))
1774
Rpc
.Channel.EndEnsureOpened(result);
1798
TimeSpan timeout =
Rpc
.TimeoutHelper.RemainingTime();
1808
result =
Rpc
.Channel._binder.BeginSend(
Rpc
.Request, timeout, s_sendCallback, this);
1812
result =
Rpc
.Channel._binder.BeginRequest(
Rpc
.Request, timeout, s_sendCallback, this);
1830
CallOnceManager.SignalNextIfNonNull(
Rpc
.Channel._autoOpenManager);
1859
Rpc
.Channel._binder.EndSend(result);
1863
Rpc
.Reply =
Rpc
.Channel._binder.EndRequest(result);
1865
if (
Rpc
.Reply == null)
1867
Rpc
.Channel.ThrowIfFaulted();
1891
Rpc
.Channel.CompletedIOOperation();