1 implementation of Channel
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
66
public IChannel
Channel
16 references to Channel
System.ServiceModel.Primitives (16)
System\ServiceModel\Channels\ChannelReliableSession.cs (5)
553
if (_binder.
Channel
is IRequestChannel)
557
else if (_binder.
Channel
is IDuplexChannel)
615
IDuplexSessionChannel channel = _binder.
Channel
as IDuplexSessionChannel;
735
_binder.
Channel
));
740
Settings.ReliableMessagingVersion, _binder.
Channel
, _binder.GetInnerSession(),
System\ServiceModel\Channels\ClientReliableDuplexSessionChannel.cs (2)
181
T innerProperty = Binder.
Channel
.GetProperty<T>();
960
Settings.ReliableMessagingVersion, Binder.
Channel
, Binder.GetInnerSession(),
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (3)
166
T innerProperty = _binder.
Channel
.GetProperty<T>();
406
_binder.
Channel
, _binder.GetInnerSession(), reply);
432
Settings.ReliableMessagingVersion, _binder.
Channel
, _binder.GetInnerSession(), message);
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (3)
169
T innerProperty = binder.
Channel
.GetProperty<T>();
443
binder.
Channel
, binder.GetInnerSession(), reply);
473
settings.ReliableMessagingVersion, binder.
Channel
, binder.GetInnerSession(), reply);
System\ServiceModel\Security\SecuritySessionClientSettings.cs (3)
385
return new SecurityChannelFaultConverter(ChannelBinder.
Channel
) as T;
389
if ((result == null) && (ChannelBinder != null) && (ChannelBinder.
Channel
!= null))
391
result = ChannelBinder.
Channel
.GetProperty<T>();