2 interfaces inheriting from IAsyncOutputChannel
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\IDuplexChannel.cs (1)
13
internal interface IAsyncDuplexChannel : IDuplexChannel, IAsyncInputChannel,
IAsyncOutputChannel
System\ServiceModel\Channels\IOutputSessionChannel.cs (1)
15
: IOutputSessionChannel,
IAsyncOutputChannel
2 implementations of IAsyncOutputChannel
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\OutputChannel.cs (1)
11
public abstract class OutputChannel : ChannelBase, IOutputChannel,
IAsyncOutputChannel
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
335
private class SecurityOutputChannel : ClientSecurityChannel<IOutputChannel>, IOutputChannel,
IAsyncOutputChannel
3 references to IAsyncOutputChannel
System.ServiceModel.Primitives (3)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
316
if (_innerOutputChannel is
IAsyncOutputChannel
asyncOutputChannel)
System\ServiceModel\Channels\SecurityChannelFactory.cs (2)
148
if (typeof(TChannel) == typeof(
IAsyncOutputChannel
) || typeof(TChannel) == typeof(IOutputChannel))
368
if (InnerChannel is
IAsyncOutputChannel
asyncOutputChannel)