1 write to Binder
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\ServiceChannel.cs (1)
53
Binder
= binder ?? throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull(nameof(binder));
17 references to Binder
System.ServiceModel.Primitives (17)
System\ServiceModel\Channels\ServiceChannel.cs (14)
54
IsReplyChannel =
Binder
.Channel is IReplyChannel;
225
get { return
Binder
.Channel; }
243
return
Binder
.ListenUri;
259
_localAddress =
Binder
.LocalAddress;
376
Binder
.Channel.Faulted += OnInnerChannelFaulted;
384
if (
Binder
is DuplexChannelBinder)
386
((DuplexChannelBinder)
Binder
).EnsurePumping();
756
Binder
.Send(rpc.Request, rpc.TimeoutHelper.RemainingTime());
760
rpc.Reply =
Binder
.Request(rpc.Request, rpc.TimeoutHelper.RemainingTime());
1262
Binder
.Abort();
1845
result = _rpc.Channel.
Binder
.BeginSend(_rpc.Request, timeout, s_sendCallback, this);
1849
result = _rpc.Channel.
Binder
.BeginRequest(_rpc.Request, timeout, s_sendCallback, this);
1896
_rpc.Channel.
Binder
.EndSend(result);
1900
_rpc.Reply = _rpc.Channel.
Binder
.EndRequest(result);
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
329
channelDispatcher.PendingChannels.Remove(rpc.Channel.
Binder
.Channel);
System\ServiceModel\Dispatcher\TerminatingOperationBehavior.cs (2)
52
var timer = new Timer(s_abortChannelTimerCallback, rpc.Channel.
Binder
.Channel, rpc.Channel.CloseTimeout, Timeout.InfiniteTimeSpan);
60
IChannel sessionChannel = rpc.Channel.
Binder
.Channel;