FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (14)
761Uri IOutputChannel.Via
763get { return ((IOutputChannel)_channel).Via; }
766EndpointAddress IOutputChannel.RemoteAddress
768get { return ((IOutputChannel)_channel).RemoteAddress; }
771void IOutputChannel.Send(Message message)
773((IOutputChannel)_channel).Send(message);
776void IOutputChannel.Send(Message message, TimeSpan timeout)
778((IOutputChannel)_channel).Send(message, timeout);
781IAsyncResult IOutputChannel.BeginSend(Message message, AsyncCallback callback, object state)
783return ((IOutputChannel)_channel).BeginSend(message, callback, state);
786IAsyncResult IOutputChannel.BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
788return ((IOutputChannel)_channel).BeginSend(message, timeout, callback, state);
791void IOutputChannel.EndSend(IAsyncResult result)
793((IOutputChannel)_channel).EndSend(result);