5 writes to binder
System.ServiceModel (5)
System\ServiceModel\Dispatcher\ChannelHandler.cs (5)
79this.binder = binder; 107this.binder = binder; 122this.binder = new MultipleReceiveBinder( 130this.binder = new BufferedReceiveBinder(this.binder); 189this.binder = handler.binder;
22 references to binder
System.ServiceModel (22)
System\ServiceModel\Dispatcher\ChannelHandler.cs (22)
123this.binder, 130this.binder = new BufferedReceiveBinder(this.binder); 133this.receiver = new ErrorHandlingReceiver(this.binder, channelDispatcher); 135Fx.Assert((this.idleManager != null) == (this.binder.HasSession && this.listener.ChannelDispatcher.DefaultCommunicationTimeouts.ReceiveTimeout != TimeSpan.MaxValue), "idle manager is present only when there is a session with a finite receive timeout"); 168if (this.binder.HasSession) 170this.sessionOpenNotification = this.binder.Channel.GetProperty<SessionOpenNotification>(); 189this.binder = handler.binder; 213get { return this.binder; } 245get { return this.binder.Channel.State == CommunicationState.Opened; } 252if (this.binder != null) 254IInputChannel input = this.binder.Channel as IInputChannel; 260IReplyChannel reply = this.binder.Channel as IReplyChannel; 305if (this.binder.Channel.State == CommunicationState.Created) 661endpoint.DatagramChannel = new ServiceChannel(this.binder, endpoint, this.listener.ChannelDispatcher, this.idleManager); 688this.channel = new ServiceChannel(this.binder, endpoint, this.listener.ChannelDispatcher, this.idleManager); 756this.listener.ChannelDispatcher.ProvideFault(e, this.requestInfo.Channel == null ? this.binder.Channel.GetProperty<FaultConverter>() : this.requestInfo.Channel.GetProperty<FaultConverter>(), ref faultInfo); 850this.binder.CloseAfterFault(timeoutHelper.RemainingTime()); 864this.binder.Abort(); 873this.binder.CloseAfterFault(CloseAfterFaultTimeout); 886this.binder.Abort(); 1084this.binder.Channel.Open(); 1122this.binder.Channel.Abort();