System\ServiceModel\ClientBase.cs (14)
1353Uri IOutputChannel.Via
1355get { return ((IOutputChannel)this.channel).Via; }
1358EndpointAddress IOutputChannel.RemoteAddress
1360get { return ((IOutputChannel)this.channel).RemoteAddress; }
1363void IOutputChannel.Send(Message message)
1365((IOutputChannel)this.channel).Send(message);
1368void IOutputChannel.Send(Message message, TimeSpan timeout)
1370((IOutputChannel)this.channel).Send(message, timeout);
1373IAsyncResult IOutputChannel.BeginSend(Message message, AsyncCallback callback, object state)
1375return ((IOutputChannel)this.channel).BeginSend(message, callback, state);
1378IAsyncResult IOutputChannel.BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
1380return ((IOutputChannel)this.channel).BeginSend(message, timeout, callback, state);
1383void IOutputChannel.EndSend(IAsyncResult result)
1385((IOutputChannel)this.channel).EndSend(result);