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