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