1 write to Channel
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyRpc.cs (1)
34this.Channel = channel;
18 references to Channel
dotnet-svcutil-lib (18)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (17)
801if (sendResult.Rpc.Channel != this) 948ThrowIfFaultUnderstood(rpc.Reply, fault, action, rpc.Reply.Version, rpc.Channel.GetProperty<FaultConverter>()); 1671Rpc.Channel.PrepareCall(_operation, _isOneWay, ref Rpc); 1673if (Rpc.Channel._explicitlyOpened) 1675Rpc.Channel.ThrowIfOpening(); 1676Rpc.Channel.ThrowIfDisposedOrNotOpen(); 1687IAsyncResult result = Rpc.Channel.BeginEnsureDisplayUI(s_ensureInteractiveInitCallback, this); 1709Rpc.Channel.EndEnsureDisplayUI(result); 1738result = Rpc.Channel.BeginEnsureOpened(timeout, s_ensureOpenCallback, this); 1774Rpc.Channel.EndEnsureOpened(result); 1808result = Rpc.Channel._binder.BeginSend(Rpc.Request, timeout, s_sendCallback, this); 1812result = Rpc.Channel._binder.BeginRequest(Rpc.Request, timeout, s_sendCallback, this); 1830CallOnceManager.SignalNextIfNonNull(Rpc.Channel._autoOpenManager); 1859Rpc.Channel._binder.EndSend(result); 1863Rpc.Reply = Rpc.Channel._binder.EndRequest(result); 1867Rpc.Channel.ThrowIfFaulted(); 1891Rpc.Channel.CompletedIOOperation();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (1)
122ServiceChannel clientChannel = ServiceChannelFactory.GetServiceChannel(rpc.Channel.Proxy);