3 implementations of IAsyncRequest
System.ServiceModel (3)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
1382class HttpChannelAsyncRequest : TraceAsyncResult, IAsyncRequest
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (1)
1047class AsyncRequest : AsyncResult, IReliableRequest, IAsyncRequest
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (1)
616class StreamedFramingAsyncRequest : AsyncResult, IAsyncRequest
7 references to IAsyncRequest
System.ServiceModel (7)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
1087protected override IAsyncRequest CreateAsyncRequest(Message message, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (1)
125protected override IAsyncRequest CreateAsyncRequest(Message message, AsyncCallback callback, object state)
System\ServiceModel\Channels\RequestChannel.cs (4)
229IAsyncRequest asyncRequest = CreateAsyncRequest(message, callback, state); 250protected abstract IAsyncRequest CreateAsyncRequest(Message message, AsyncCallback callback, object state); 259IAsyncRequest asyncRequest = result as IAsyncRequest;
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (1)
78protected override IAsyncRequest CreateAsyncRequest(Message message, AsyncCallback callback, object state)