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