3 implementations of IClientChannel
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
20internal sealed class ServiceChannel : CommunicationObject, IChannel, IClientChannel, IDuplexContextChannel, IOutputChannel, IRequestChannel, IServiceChannel
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
18public class ServiceChannelProxy : DispatchProxy, ICommunicationObject, IChannel, IClientChannel, IOutputChannel, IRequestChannel, IServiceChannel, IDuplexContextChannel
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
519protected class ChannelBase<T> : IClientChannel, IOutputChannel, IRequestChannel, IChannelBaseProxy
51 references to IClientChannel
dotnet-svcutil-lib (51)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (4)
422if (t.IsAssignableFrom(typeof(IClientChannel))) 1394bool IClientChannel.AllowInitializationUI 1410bool IClientChannel.DidInteractiveInitialization 1542event EventHandler<UnknownMessageReceivedEventArgs> IClientChannel.UnknownMessageReceived
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (2)
347IClientChannel clientChannel = serviceChannel.Proxy as IClientChannel;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (13)
618bool IClientChannel.AllowInitializationUI 622return ((IClientChannel)_serviceChannel).AllowInitializationUI; 626((IClientChannel)_serviceChannel).AllowInitializationUI = value; 630bool IClientChannel.DidInteractiveInitialization 632get { return ((IClientChannel)_serviceChannel).DidInteractiveInitialization; } 635Uri IClientChannel.Via 640event EventHandler<UnknownMessageReceivedEventArgs> IClientChannel.UnknownMessageReceived 642add { ((IClientChannel)_serviceChannel).UnknownMessageReceived += value; } 643remove { ((IClientChannel)_serviceChannel).UnknownMessageReceived -= value; } 646IAsyncResult IClientChannel.BeginDisplayInitializationUI(AsyncCallback callback, object state) 651void IClientChannel.DisplayInitializationUI() 656void IClientChannel.EndDisplayInitializationUI(IAsyncResult result) 663((IClientChannel)_serviceChannel).Dispose();
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (18)
142public IClientChannel InnerChannel 146return (IClientChannel)Channel; 582bool IClientChannel.AllowInitializationUI 584get { return ((IClientChannel)_channel).AllowInitializationUI; } 585set { ((IClientChannel)_channel).AllowInitializationUI = value; } 588bool IClientChannel.DidInteractiveInitialization 590get { return ((IClientChannel)_channel).DidInteractiveInitialization; } 593Uri IClientChannel.Via 595get { return ((IClientChannel)_channel).Via; } 598event EventHandler<UnknownMessageReceivedEventArgs> IClientChannel.UnknownMessageReceived 600add { ((IClientChannel)_channel).UnknownMessageReceived += value; } 601remove { ((IClientChannel)_channel).UnknownMessageReceived -= value; } 604void IClientChannel.DisplayInitializationUI() 606((IClientChannel)_channel).DisplayInitializationUI(); 609IAsyncResult IClientChannel.BeginDisplayInitializationUI(AsyncCallback callback, object state) 611return ((IClientChannel)_channel).BeginDisplayInitializationUI(callback, state); 614void IClientChannel.EndDisplayInitializationUI(IAsyncResult result) 616((IClientChannel)_channel).EndDisplayInitializationUI(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (6)
1032((IClientChannel)metadataClient).OperationTimeout = timeoutHelper.RemainingTime(); 1036((IClientChannel)metadataClient).Close(); 1040((IClientChannel)metadataClient).Abort(); 1090((IClientChannel)metadataClient).OperationTimeout = timeoutHelper.RemainingTime(); 1137((IClientChannel)metadataClient).RemoteAddress.Uri.ToString()))); 1143_section = MetadataRetriever.CreateMetadataSection(reader, ((IClientChannel)metadataClient).RemoteAddress.Uri.ToString());
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceContractGenerator.cs (1)
440channelType.BaseTypes.Add(context.ServiceContractGenerator.GetCodeTypeReference(typeof(IClientChannel)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelDispatcher.cs (1)
336internal void InitializeChannel(IClientChannel channel)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
492_listener.ChannelDispatcher.InitializeChannel((IClientChannel)channel.Proxy);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\IChannelInitializer.cs (1)
9void Initialize(IClientChannel channel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\IClientMessageInspector.cs (1)
13object BeforeSendRequest(ref Message request, IClientChannel channel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\IInteractiveChannelInitializer.cs (1)
9IAsyncResult BeginDisplayInitializationUI(IClientChannel channel, AsyncCallback callback, object state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (2)
159internal void InitializeChannel(IClientChannel channel) 244private IClientChannel _proxy;