2 implementations of IAsyncRequest
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (1)
198internal class StreamedFramingAsyncRequest : IAsyncRequest
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (1)
693private class AsyncRequest : IReliableRequest, IAsyncRequest
4 references to IAsyncRequest
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (1)
68protected override IAsyncRequest CreateAsyncRequest(Message message) => new StreamedConnectionPoolHelper.StreamedFramingAsyncRequest(this);
System.ServiceModel.Primitives (3)
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (1)
102protected override IAsyncRequest CreateAsyncRequest(Message message)
System\ServiceModel\Channels\RequestChannel.cs (2)
213protected abstract IAsyncRequest CreateAsyncRequest(Message message); 257IAsyncRequest request = CreateAsyncRequest(message);