1 write to channelBinder
System.ServiceModel (1)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
1164this.channelBinder = channelBinder;
27 references to channelBinder
System.ServiceModel (27)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (27)
1166this.channelBinder.Faulted += this.OnInnerFaulted; 1202return this.channelBinder; 1218return this.channelBinder.LocalAddress; 1254if (this.channelBinder != null) 1256this.channelBinder.Abort(); 1284if (this.channelBinder != null) 1286this.channelBinder.Close(timeoutHelper.RemainingTime()); 1353if (this.channelBinder.LocalAddress == null) 1356return this.channelBinder.LocalAddress.Uri; 1545if (!channelBinder.TryReceive(timeoutHelper.RemainingTime(), out innerRequestContext)) 1674if (typeof(T) == typeof(FaultConverter) && (this.channelBinder != null)) 1676return new SecurityChannelFaultConverter(this.channelBinder.Channel) as T; 1680if ((result == null) && (channelBinder != null) && (channelBinder.Channel != null)) 1682result = channelBinder.Channel.GetProperty<T>(); 1693if (!(this.channelBinder.Channel is IReplyChannel) && !(this.channelBinder.Channel is IDuplexSessionChannel)) 2156if (this.channelBinder.CanSendAsynchronously) 2158this.channelBinder.Send(message, timeout); 2219if (this.sessionChannel.channelBinder.CanSendAsynchronously) 2221return this.sessionChannel.channelBinder.BeginSend(response, timeoutHelper.RemainingTime(), sendCallback, this); 2241else if (this.sessionChannel.channelBinder.CanSendAsynchronously) 2243this.sessionChannel.channelBinder.EndSend(result); 2317if (this.channel.channelBinder != null) 2321IAsyncResult result = this.channel.channelBinder.BeginClose(timeoutHelper.RemainingTime(), channelBinderCloseCallback, this); 2326this.channel.channelBinder.EndClose(result); 2369self.channel.channelBinder.EndClose(result);