29 references to InnerChannel
System.ServiceModel (29)
System\ServiceModel\Channels\ServiceChannel.cs (28)
371IOutputChannel outputChannel = this.InnerChannel as IOutputChannel; 375IRequestChannel requestChannel = this.InnerChannel as IRequestChannel; 392IOutputChannel outputChannel = this.InnerChannel as IOutputChannel; 396IRequestChannel requestChannel = this.InnerChannel as IRequestChannel; 442IDuplexChannel duplexChannel = this.InnerChannel as IDuplexChannel; 456return this.InnerChannel is IDuplexChannel; 570IChannel innerChannel = this.InnerChannel; 896ISessionChannel<IDuplexSession> duplexSessionChannel = this.InnerChannel as ISessionChannel<IDuplexSession>; 1385new ChainedBeginHandler(this.InnerChannel.BeginClose), new ChainedEndHandler(this.InnerChannel.EndClose), 1390return this.InnerChannel.BeginClose(timeout, callback, state); 1421return this.InnerChannel.BeginOpen(timeout, callback, state); 1449this.InnerChannel.Close(timeoutHelper.RemainingTime()); 1472this.InnerChannel.EndClose(result); 1496InnerChannel.EndOpen(result); 1524this.InnerChannel.Open(timeout); 1643if (this.InnerChannel == null) 1648ISessionChannel<IDuplexSession> duplexSessionChannel = this.InnerChannel as ISessionChannel<IDuplexSession>; 1696if (this.InnerChannel != null) 1698ISessionChannel<IInputSession> inputSession = this.InnerChannel as ISessionChannel<IInputSession>; 1702ISessionChannel<IDuplexSession> duplexSession = this.InnerChannel as ISessionChannel<IDuplexSession>; 1715if (this.InnerChannel != null) 1717ISessionChannel<IOutputSession> outputSession = this.InnerChannel as ISessionChannel<IOutputSession>; 1721ISessionChannel<IDuplexSession> duplexSession = this.InnerChannel as ISessionChannel<IDuplexSession>; 1734if (this.InnerChannel != null) 1736ISessionChannel<IInputSession> inputSession = this.InnerChannel as ISessionChannel<IInputSession>; 1740ISessionChannel<IOutputSession> outputSession = this.InnerChannel as ISessionChannel<IOutputSession>; 1744ISessionChannel<IDuplexSession> duplexSession = this.InnerChannel as ISessionChannel<IDuplexSession>;
System\ServiceModel\OperationContext.cs (1)
303IChannel inner = this.channel.InnerChannel;