4 writes to channelBinder
System.ServiceModel (4)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (4)
675this.channelBinder = ClientReliableChannelBinder<IDuplexSessionChannel>.CreateBinder(this.RemoteAddress, this.Via, (IChannelFactory<IDuplexSessionChannel>)(object)this.Settings.InnerChannelFactory, 680this.channelBinder = ClientReliableChannelBinder<IDuplexChannel>.CreateBinder(this.RemoteAddress, this.Via, (IChannelFactory<IDuplexChannel>)(object)this.Settings.InnerChannelFactory, 686this.channelBinder = ClientReliableChannelBinder<IRequestChannel>.CreateBinder(this.RemoteAddress, this.Via, (IChannelFactory<IRequestChannel>)(object)this.Settings.InnerChannelFactory, 691this.channelBinder = ClientReliableChannelBinder<IRequestSessionChannel>.CreateBinder(this.RemoteAddress, this.Via, (IChannelFactory<IRequestSessionChannel>)(object)this.Settings.InnerChannelFactory,
20 references to channelBinder
System.ServiceModel (20)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (20)
466return this.channelBinder; 498if (this.channelBinder != null) 499return this.channelBinder.LocalAddress; 544if (typeof(T) == typeof(FaultConverter) && (this.channelBinder != null)) 546return new SecurityChannelFaultConverter(this.channelBinder.Channel) as T; 555if ((result == null) && (channelBinder != null) && (channelBinder.Channel != null)) 557result = channelBinder.Channel.GetProperty<T>(); 601if (this.channelBinder.LocalAddress != null) 603requirement.DuplexClientLocalAddress = this.channelBinder.LocalAddress; 618this.channelBinder.Open(timeoutHelper.RemainingTime()); 694this.channelBinder.Faulted += this.OnInnerFaulted; 1341if (this.channelBinder != null) 1343this.channelBinder.Abort(); 1357if (this.channelBinder != null) 1359this.channelBinder.Close(timeoutHelper.RemainingTime()); 1688if (channel.channelBinder != null) 1692IAsyncResult result = this.channel.channelBinder.BeginClose(timeoutHelper.RemainingTime(), closeChannelBinderCallback, this); 1697this.channel.channelBinder.EndClose(result); 1731self.channel.channelBinder.EndClose(result);