1 implementation of Channel
System.ServiceModel (1)
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
71
public IChannel
Channel
30 references to Channel
System.ServiceModel (30)
System\ServiceModel\Channels\ChannelReliableSession.cs (5)
648
if (this.binder.
Channel
is IRequestChannel)
652
else if (this.binder.
Channel
is IDuplexChannel)
719
IDuplexSessionChannel channel = this.binder.
Channel
as IDuplexSessionChannel;
864
this.binder.
Channel
));
869
this.Settings.ReliableMessagingVersion, this.binder.
Channel
, this.binder.GetInnerSession(),
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (3)
236
T innerProperty = this.binder.
Channel
.GetProperty<T>();
1241
this.settings.ReliableMessagingVersion, this.binder.
Channel
, this.binder.GetInnerSession(),
1902
if (WsrmUtilities.ValidateCreateSequence<IDuplexSessionChannel>(info, this.listener, this.Binder.
Channel
, out acksTo))
System\ServiceModel\Channels\ReliableInputSessionChannel.cs (5)
259
T innerProperty = this.binder.
Channel
.GetProperty<T>();
496
this.Listener.ReliableMessagingVersion, this.Binder.
Channel
, this.Binder.GetInnerSession(),
593
if (WsrmUtilities.ValidateCreateSequence<IInputSessionChannel>(info, this.Listener, this.Binder.
Channel
, out acksTo))
952
this.Listener.ReliableMessagingVersion, this.Binder.
Channel
, this.Binder.GetInnerSession(),
1005
if (WsrmUtilities.ValidateCreateSequence<IInputSessionChannel>(info, this.Listener, this.Binder.
Channel
, out acksTo))
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (3)
192
T innerProperty = this.binder.
Channel
.GetProperty<T>();
500
this.binder.
Channel
, this.binder.GetInnerSession(), reply);
526
this.settings.ReliableMessagingVersion, this.binder.
Channel
, this.binder.GetInnerSession(), message);
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (3)
363
T innerProperty = this.binder.
Channel
.GetProperty<T>();
399
this.listener.ReliableMessagingVersion, this.binder.
Channel
, this.binder.GetInnerSession(),
918
if (WsrmUtilities.ValidateCreateSequence<IReplySessionChannel>(info, this.listener, this.binder.
Channel
, out acksTo))
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (3)
212
T innerProperty = this.binder.
Channel
.GetProperty<T>();
583
this.binder.
Channel
, this.binder.GetInnerSession(), reply);
613
this.settings.ReliableMessagingVersion, this.binder.
Channel
, this.binder.GetInnerSession(), reply);
System\ServiceModel\Security\SecuritySessionClientSettings.cs (3)
546
return new SecurityChannelFaultConverter(this.channelBinder.
Channel
) as T;
555
if ((result == null) && (channelBinder != null) && (channelBinder.
Channel
!= null))
557
result = channelBinder.
Channel
.GetProperty<T>();
System\ServiceModel\Security\SecuritySessionServerSettings.cs (5)
1676
return new SecurityChannelFaultConverter(this.channelBinder.
Channel
) as T;
1680
if ((result == null) && (channelBinder != null) && (channelBinder.
Channel
!= null))
1682
result = channelBinder.
Channel
.GetProperty<T>();
1693
if (!(this.channelBinder.
Channel
is IReplyChannel) && !(this.channelBinder.
Channel
is IDuplexSessionChannel))