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