1 write to Channel
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyRpc.cs (1)
34
this.
Channel
= channel;
18 references to Channel
dotnet-svcutil-lib (18)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (17)
801
if (sendResult.Rpc.
Channel
!= this)
948
ThrowIfFaultUnderstood(rpc.Reply, fault, action, rpc.Reply.Version, rpc.
Channel
.GetProperty<FaultConverter>());
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);
1738
result = Rpc.
Channel
.BeginEnsureOpened(timeout, s_ensureOpenCallback, this);
1774
Rpc.
Channel
.EndEnsureOpened(result);
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);
1867
Rpc.
Channel
.ThrowIfFaulted();
1891
Rpc.
Channel
.CompletedIOOperation();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (1)
122
ServiceChannel clientChannel = ServiceChannelFactory.GetServiceChannel(rpc.
Channel
.Proxy);