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