2 interfaces inheriting from IReliableChannelBinder
System.ServiceModel (2)
System\ServiceModel\Channels\IReliableChannelBinder.cs (2)
54interface IClientReliableChannelBinder : IReliableChannelBinder 69interface IServerReliableChannelBinder : IReliableChannelBinder
1 implementation of IReliableChannelBinder
System.ServiceModel (1)
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
28abstract class ReliableChannelBinder<TChannel> : IReliableChannelBinder
54 references to IReliableChannelBinder
System.ServiceModel (54)
System\ServiceModel\Channels\ChannelReliableSession.cs (2)
16IReliableChannelBinder binder; 34protected ChannelReliableSession(ChannelBase channel, IReliableFactorySettings settings, IReliableChannelBinder binder, FaultHelper faultHelper)
System\ServiceModel\Channels\IReliableChannelBinder.cs (1)
7delegate void BinderExceptionHandler(IReliableChannelBinder sender, Exception exception);
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (7)
20IReliableChannelBinder binder; 35protected ReliableDuplexSessionChannel(ChannelManagerBase manager, IReliableFactorySettings settings, IReliableChannelBinder binder) 45public IReliableChannelBinder Binder 917void OnBinderException(IReliableChannelBinder sender, Exception exception) 934void OnBinderFaulted(IReliableChannelBinder sender, Exception exception) 1468IReliableChannelBinder binder, FaultHelper faultHelper, 1766IReliableChannelBinder binder, FaultHelper faultHelper,
System\ServiceModel\Channels\ReliableInputSessionChannel.cs (2)
307void OnBinderException(IReliableChannelBinder sender, Exception exception) 315void OnBinderFaulted(IReliableChannelBinder sender, Exception exception)
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (33)
683public abstract void SendFaultAsync(IReliableChannelBinder binder, RequestContext requestContext, Message faultMessage); 691Dictionary<IReliableChannelBinder, TState> faultList = new Dictionary<IReliableChannelBinder, TState>(); 704Dictionary<IReliableChannelBinder, TState> tempFaultList; 721foreach (KeyValuePair<IReliableChannelBinder, TState> pair in tempFaultList) 731void AbortBinder(IReliableChannelBinder binder) 743void AsyncCloseBinder(IReliableChannelBinder binder) 781protected abstract IAsyncResult BeginSendFault(IReliableChannelBinder binder, TState state, TimeSpan timeout, 793void CompleteBinderClose(IReliableChannelBinder binder, IAsyncResult result) 805void CompleteSendFault(IReliableChannelBinder binder, TState state, IAsyncResult result) 836protected abstract void EndSendFault(IReliableChannelBinder binder, TState state, IAsyncResult result); 846IReliableChannelBinder binder = (IReliableChannelBinder)result.AsyncState; 870IReliableChannelBinder binder; 878binder = (IReliableChannelBinder)result.AsyncState; 897protected void RemoveBinder(IReliableChannelBinder binder) 918protected void SendFault(IReliableChannelBinder binder, TState state) 941public override void SendFaultAsync(IReliableChannelBinder binder, RequestContext requestContext, Message faultMessage) 991IReliableChannelBinder binder; 999binder = (IReliableChannelBinder)callbackState; 1059protected override IAsyncResult BeginSendFault(IReliableChannelBinder binder, FaultState faultState, 1065protected override void EndSendFault(IReliableChannelBinder binder, FaultState faultState, IAsyncResult result) 1094protected override IAsyncResult BeginSendFault(IReliableChannelBinder binder, Message message, 1100protected override void EndSendFault(IReliableChannelBinder binder, Message message, IAsyncResult result) 1114IReliableChannelBinder binder; 1120OperationEndCallback[] endCallbacks, IReliableChannelBinder binder, TimeSpan timeout, 1218IReliableChannelBinder binder; 1224public ReliableChannelOpenAsyncResult(IReliableChannelBinder binder, 1418IReliableChannelBinder binder; 1428public IReliableChannelBinder Binder 2252IReliableChannelBinder binder; 2264public IReliableChannelBinder Binder 3633IReliableChannelBinder binder, RequestContext context)
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (3)
42protected IReliableChannelBinder Binder 260void OnBinderException(IReliableChannelBinder sender, Exception exception) 277void OnBinderFaulted(IReliableChannelBinder sender, Exception exception)
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (2)
471void OnBinderException(IReliableChannelBinder sender, Exception exception) 479void OnBinderFaulted(IReliableChannelBinder sender, Exception exception)
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (2)
282void OnBinderException(IReliableChannelBinder sender, Exception exception) 299void OnBinderFaulted(IReliableChannelBinder sender, Exception exception)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
697void OnInnerFaulted(IReliableChannelBinder sender, Exception exception)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
1359void OnInnerFaulted(IReliableChannelBinder sender, Exception exception)