6 types derived from AsyncResult
Extensibility.MessageInterceptor.IntegrationTests (6)
AsyncResult.cs (2)
175
class CompletedAsyncResult :
AsyncResult
190
abstract class TypedAsyncResult<T> :
AsyncResult
ChainedAsyncResult.cs (1)
11
class ChainedAsyncResult :
AsyncResult
InterceptingChannelFactory.cs (2)
171
class SendAsyncResult :
AsyncResult
291
class RequestAsyncResult :
AsyncResult
InterceptingDuplexChannel.cs (1)
115
abstract class ReceiveAsyncResultBase<TInputChannel> :
AsyncResult
8 references to AsyncResult
Extensibility.MessageInterceptor.IntegrationTests (8)
AsyncResult.cs (3)
134
where TAsyncResult :
AsyncResult
185
AsyncResult
.End<CompletedAsyncResult>(result);
212
TypedAsyncResult<T> typedResult =
AsyncResult
.End<TypedAsyncResult<T>>(result);
ChainedAsyncResult.cs (1)
112
AsyncResult
.End<ChainedAsyncResult>(result);
InterceptingChannelFactory.cs (2)
224
AsyncResult
.End<SendAsyncResult>(result);
345
RequestAsyncResult thisPtr =
AsyncResult
.End<RequestAsyncResult>(result);
InterceptingDuplexChannel.cs (2)
224
TryReceiveAsyncResult<TInputChannel> thisPtr =
AsyncResult
.End<TryReceiveAsyncResult<TInputChannel>>(result);
256
ReceiveAsyncResult<TInputChannel> thisPtr =
AsyncResult
.End<ReceiveAsyncResult<TInputChannel>>(result);