3 interfaces inheriting from IOutputChannel
System.ServiceModel.Primitives (3)
9 implementations of IOutputChannel
System.ServiceModel.NetFramingBase (1)
System.ServiceModel.Primitives (6)
System.ServiceModel.Primitives.Tests (2)
61 references to IOutputChannel
System.ServiceModel (1)
System.ServiceModel.NetFramingBase (1)
System.ServiceModel.Primitives (56)
System\ServiceModel\ClientBase.cs (14)
1158Uri IOutputChannel.Via
1160get { return ((IOutputChannel)_channel).Via; }
1163EndpointAddress IOutputChannel.RemoteAddress
1165get { return ((IOutputChannel)_channel).RemoteAddress; }
1168void IOutputChannel.Send(Message message)
1170((IOutputChannel)_channel).Send(message);
1173void IOutputChannel.Send(Message message, TimeSpan timeout)
1175((IOutputChannel)_channel).Send(message, timeout);
1178IAsyncResult IOutputChannel.BeginSend(Message message, AsyncCallback callback, object state)
1180return ((IOutputChannel)_channel).BeginSend(message, callback, state);
1183IAsyncResult IOutputChannel.BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
1185return ((IOutputChannel)_channel).BeginSend(message, timeout, callback, state);
1188void IOutputChannel.EndSend(IAsyncResult result)
1190((IOutputChannel)_channel).EndSend(result);
System.ServiceModel.Primitives.Tests (3)