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