4 writes to ChannelBinder
System.ServiceModel.Primitives (4)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (4)
499ChannelBinder = ClientReliableChannelBinder<IDuplexSessionChannel>.CreateBinder(RemoteAddress, Via, (IChannelFactory<IDuplexSessionChannel>)(object)Settings.InnerChannelFactory, 504ChannelBinder = ClientReliableChannelBinder<IDuplexChannel>.CreateBinder(RemoteAddress, Via, (IChannelFactory<IDuplexChannel>)(object)Settings.InnerChannelFactory, 510ChannelBinder = ClientReliableChannelBinder<IRequestChannel>.CreateBinder(RemoteAddress, Via, (IChannelFactory<IRequestChannel>)(object)Settings.InnerChannelFactory, 515ChannelBinder = ClientReliableChannelBinder<IRequestSessionChannel>.CreateBinder(RemoteAddress, Via, (IChannelFactory<IRequestSessionChannel>)(object)Settings.InnerChannelFactory,
20 references to ChannelBinder
System.ServiceModel.Primitives (20)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (20)
337if (ChannelBinder != null) 339return ChannelBinder.LocalAddress; 383if (typeof(T) == typeof(FaultConverter) && (ChannelBinder != null)) 385return new SecurityChannelFaultConverter(ChannelBinder.Channel) as T; 389if ((result == null) && (ChannelBinder != null) && (ChannelBinder.Channel != null)) 391result = ChannelBinder.Channel.GetProperty<T>(); 433if (ChannelBinder.LocalAddress != null) 435requirement.DuplexClientLocalAddress = ChannelBinder.LocalAddress; 450await ChannelBinder.OpenAsync(timeoutHelper.RemainingTime()); 518ChannelBinder.Faulted += OnInnerFaulted; 625await ChannelBinder.SendAsync(closeMessage, timeoutHelper.RemainingTime()); 645await ChannelBinder.SendAsync(message, timeoutHelper.RemainingTime()); 1084if (ChannelBinder != null) 1086ChannelBinder.Abort(); 1100if (ChannelBinder != null) 1102await ChannelBinder.CloseAsync(timeoutHelper.RemainingTime()); 1125(bool success, RequestContext requestContext) = await ChannelBinder.TryReceiveAsync(timeoutHelper.RemainingTime()); 1526Message reply = await ChannelBinder.RequestAsync(message, timeoutHelper.RemainingTime()); 1640await ChannelBinder.SendAsync(message, timeoutHelper.RemainingTime());