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);
60
get { return
_channel
; }
129
get { return
_channel
.LocalAddress; }
148
get { return
_channel
.RemoteAddress; }
194
_channel
.Abort();
200
_channel
.Close(timeout);
247
EndpointAddress address =
_channel
.RemoteAddress ??
_channel
.LocalAddress;
306
if (
_channel
.State == CommunicationState.Faulted)
309
return
_channel
.BeginTryReceive(timeout, callback, state);
323
if (
_channel
.EndTryReceive(result, out message))
327
requestContext = new DuplexRequestContext(
_channel
, message, this);
345
return new DuplexRequestContext(
_channel
, message, this);
350
return
_channel
.BeginSend(message, timeout, callback, state);
355
_channel
.EndSend(result);
360
_channel
.Send(message, timeout);
378
IAsyncResult result =
_channel
.BeginSend(message, timeout, Fx.ThunkCallback(new AsyncCallback(this.SendCallback)), duplexRequest);
416
if (
_channel
.State == CommunicationState.Faulted)
424
if (
_channel
.TryReceive(timeout, out message))
428
requestContext = new DuplexRequestContext(
_channel
, message, this);
472
_channel
.Send(message, timeoutHelper.RemainingTime());
485
if (!
_channel
.TryReceive(remaining, out reply))
521
_channel
.Send(message, timeoutHelper.RemainingTime());
615
return
_channel
.WaitForMessage(timeout);
620
return
_channel
.BeginWaitForMessage(timeout, callback, state);
625
return
_channel
.EndWaitForMessage(result);
928
_parent.
_channel
.EndSend(sendResult);