1 write to binder
System.ServiceModel (1)
System\ServiceModel\Channels\ServiceChannel.cs (1)
71
this.
binder
= binder;
15 references to binder
System.ServiceModel (15)
System\ServiceModel\Channels\ServiceChannel.cs (15)
72
this.isReplyChannel = this.
binder
.Channel is IReplyChannel;
216
get { return this.
binder
; }
259
get { return this.
binder
.Channel; }
287
return this.
binder
.ListenUri;
303
this.localAddress = this.
binder
.LocalAddress;
437
this.
binder
.Channel.Faulted += OnInnerChannelFaulted;
445
if (this.
binder
is DuplexChannelBinder)
446
((DuplexChannelBinder)this.
binder
).EnsurePumping();
819
this.
binder
.Send(rpc.Request, rpc.TimeoutHelper.RemainingTime());
823
rpc.Reply = this.
binder
.Request(rpc.Request, rpc.TimeoutHelper.RemainingTime());
1334
this.
binder
.Abort();
2047
result = this.Rpc.Channel.
binder
.BeginSend(this.Rpc.Request, timeout, sendCallback, this);
2051
result = this.Rpc.Channel.
binder
.BeginRequest(this.Rpc.Request, timeout, sendCallback, this);
2098
this.Rpc.Channel.
binder
.EndSend(result);
2102
this.Rpc.Reply = this.Rpc.Channel.
binder
.EndRequest(result);