28 references to InnerChannel
System.ServiceModel (18)
System\ServiceModel\ClientBase.cs (17)
529((IClientChannel)this.InnerChannel).DisplayInitializationUI(); 594this.InnerChannel.Open(timeoutHelper.RemainingTime()); 609InnerChannel.Close(timeoutHelper.RemainingTime()); 647this.InnerChannel.Closed += value; 651this.InnerChannel.Closed -= value; 659this.InnerChannel.Closing += value; 663this.InnerChannel.Closing -= value; 671this.InnerChannel.Faulted += value; 675this.InnerChannel.Faulted -= value; 683this.InnerChannel.Opened += value; 687this.InnerChannel.Opened -= value; 695this.InnerChannel.Opening += value; 699this.InnerChannel.Opening -= value; 761return this.InnerChannel.BeginOpen(timeout, callback, state); 766this.InnerChannel.EndOpen(result); 797return this.InnerChannel.BeginClose(timeout, callback, state); 813this.InnerChannel.EndClose(result);
System\ServiceModel\DuplexClientBase.cs (1)
71return (IDuplexContextChannel)InnerChannel;
System.ServiceModel.Discovery (8)
System\ServiceModel\Discovery\Version11\AnnouncementInnerClient11.cs (1)
81return base.InnerChannel;
System\ServiceModel\Discovery\Version11\DiscoveryInnerClientAdhoc11.cs (1)
50return this.duplexInnerClient.InnerChannel;
System\ServiceModel\Discovery\Version11\DiscoveryInnerClientManaged11.cs (1)
44return base.InnerChannel;
System\ServiceModel\Discovery\VersionApril2005\AnnouncementInnerClientApril2005.cs (1)
82return base.InnerChannel;
System\ServiceModel\Discovery\VersionApril2005\DiscoveryInnerClientApril2005.cs (1)
51return this.duplexInnerClient.InnerChannel;
System\ServiceModel\Discovery\VersionCD1\AnnouncementInnerClientCD1.cs (1)
81return base.InnerChannel;
System\ServiceModel\Discovery\VersionCD1\DiscoveryInnerClientAdhocCD1.cs (1)
50return this.duplexInnerClient.InnerChannel;
System\ServiceModel\Discovery\VersionCD1\DiscoveryInnerClientManagedCD1.cs (1)
44return base.InnerChannel;
System.WorkflowServices (2)
System\ServiceModel\Activities\WorkflowClientDeliverMessageWrapper.cs (2)
48using (OperationContextScope scope = new OperationContextScope((IContextChannel)desClient.InnerChannel)) 50IContextManager contextManager = desClient.InnerChannel.GetProperty<IContextManager>();