1 write to _channel
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
36_channel = channel;
27 references to _channel
dotnet-svcutil-lib (27)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (27)
38_channel.Faulted += new EventHandler(OnFaulted); 60get { return _channel; } 129get { return _channel.LocalAddress; } 148get { return _channel.RemoteAddress; } 194_channel.Abort(); 200_channel.Close(timeout); 247EndpointAddress address = _channel.RemoteAddress ?? _channel.LocalAddress; 306if (_channel.State == CommunicationState.Faulted) 309return _channel.BeginTryReceive(timeout, callback, state); 323if (_channel.EndTryReceive(result, out message)) 327requestContext = new DuplexRequestContext(_channel, message, this); 345return new DuplexRequestContext(_channel, message, this); 350return _channel.BeginSend(message, timeout, callback, state); 355_channel.EndSend(result); 360_channel.Send(message, timeout); 378IAsyncResult result = _channel.BeginSend(message, timeout, Fx.ThunkCallback(new AsyncCallback(this.SendCallback)), duplexRequest); 416if (_channel.State == CommunicationState.Faulted) 424if (_channel.TryReceive(timeout, out message)) 428requestContext = new DuplexRequestContext(_channel, message, this); 472_channel.Send(message, timeoutHelper.RemainingTime()); 485if (!_channel.TryReceive(remaining, out reply)) 521_channel.Send(message, timeoutHelper.RemainingTime()); 615return _channel.WaitForMessage(timeout); 620return _channel.BeginWaitForMessage(timeout, callback, state); 625return _channel.EndWaitForMessage(result); 928_parent._channel.EndSend(sendResult);