25 references to InnerChannel
dotnet-svcutil-lib (25)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (24)
363
IOutputChannel outputChannel =
InnerChannel
as IOutputChannel;
367
IRequestChannel requestChannel =
InnerChannel
as IRequestChannel;
384
IOutputChannel outputChannel =
InnerChannel
as IOutputChannel;
388
IRequestChannel requestChannel =
InnerChannel
as IRequestChannel;
412
IDuplexChannel duplexChannel =
InnerChannel
as IDuplexChannel;
426
return
InnerChannel
is IDuplexChannel;
540
IChannel innerChannel =
InnerChannel
;
838
ISessionChannel<IDuplexSession> duplexSessionChannel =
InnerChannel
as ISessionChannel<IDuplexSession>;
1292
var asyncInnerChannel =
InnerChannel
as IAsyncCommunicationObject;
1299
InnerChannel
.Close(timeoutHelper.RemainingTime());
1348
var asyncInnerChannel =
InnerChannel
as IAsyncCommunicationObject;
1355
InnerChannel
.Open(timeout);
1432
if (
InnerChannel
== null)
1437
ISessionChannel<IDuplexSession> duplexSessionChannel =
InnerChannel
as ISessionChannel<IDuplexSession>;
1485
if (
InnerChannel
!= null)
1487
ISessionChannel<IInputSession> inputSession =
InnerChannel
as ISessionChannel<IInputSession>;
1491
ISessionChannel<IDuplexSession> duplexSession =
InnerChannel
as ISessionChannel<IDuplexSession>;
1504
if (
InnerChannel
!= null)
1506
ISessionChannel<IOutputSession> outputSession =
InnerChannel
as ISessionChannel<IOutputSession>;
1510
ISessionChannel<IDuplexSession> duplexSession =
InnerChannel
as ISessionChannel<IDuplexSession>;
1523
if (
InnerChannel
!= null)
1525
ISessionChannel<IInputSession> inputSession =
InnerChannel
as ISessionChannel<IInputSession>;
1529
ISessionChannel<IOutputSession> outputSession =
InnerChannel
as ISessionChannel<IOutputSession>;
1533
ISessionChannel<IDuplexSession> duplexSession =
InnerChannel
as ISessionChannel<IDuplexSession>;
FrameworkFork\System.ServiceModel\System\ServiceModel\OperationContext.cs (1)
252
IChannel inner = _channel.
InnerChannel
;