1 write to InnerChannel
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\LayeredChannel.cs (1)
21
InnerChannel
= innerChannel;
32 references to InnerChannel
System.ServiceModel.Primitives (32)
System\ServiceModel\Channels\LayeredChannel.cs (6)
23
InnerChannel
.Faulted += _onInnerChannelFaulted;
37
return
InnerChannel
.GetProperty<T>();
42
InnerChannel
.Faulted -= _onInnerChannelFaulted;
48
InnerChannel
.Abort();
53
return
InnerChannel
.CloseHelperAsync(timeout);
64
return
InnerChannel
.OpenHelperAsync(timeout);
System\ServiceModel\Channels\LayeredChannelFactory.cs (13)
97
get { return
InnerChannel
.LocalAddress; }
123
if (
InnerChannel
is IAsyncInputChannel asyncInputChannel)
129
message = await Task.Factory.FromAsync(
InnerChannel
.BeginReceive,
InnerChannel
.EndReceive, timeout, null);
139
if (
InnerChannel
is IAsyncInputChannel asyncInputChannel)
145
message = await Task.Factory.FromAsync(
InnerChannel
.BeginReceive,
InnerChannel
.EndReceive, null);
188
if (
InnerChannel
is IAsyncInputChannel asyncInputChannel)
194
(retVal, message) = await TaskHelpers.FromAsync<TimeSpan, bool, Message>(
InnerChannel
.BeginTryReceive,
InnerChannel
.EndTryReceive, timeout, null);
210
if (
InnerChannel
is IAsyncInputChannel asyncInputChannel)
216
return Task.Factory.FromAsync(
InnerChannel
.BeginWaitForMessage,
InnerChannel
.EndWaitForMessage, timeout, null);
System\ServiceModel\Channels\SecurityChannelFactory.cs (12)
308
if (
InnerChannel
!= null)
310
IChannelBindingProvider cbp =
InnerChannel
.GetProperty<IChannelBindingProvider>();
368
if (
InnerChannel
is IAsyncOutputChannel asyncOutputChannel)
374
await Task.Factory.FromAsync(
InnerChannel
.BeginSend,
InnerChannel
.EndSend, message, timeoutHelper.RemainingTime(), null);
400
return ((IOutputSessionChannel)
InnerChannel
).Session;
471
Message reply = await Task.Factory.FromAsync(
InnerChannel
.BeginRequest,
InnerChannel
.EndRequest, message, timeoutHelper.RemainingTime(), null);
499
return ((IRequestSessionChannel)
InnerChannel
).Session;
513
get { return (IDuplexChannel)
InnerChannel
; }
680
return ((ISessionChannel<IDuplexSession>)
InnerChannel
).Session;
688
return ((ISessionChannel<IAsyncDuplexSession>)
InnerChannel
).Session;
System\ServiceModel\Security\SecurityChannel.cs (1)
33
return new SecurityChannelFaultConverter(
InnerChannel
) as T;