2 types derived from AsyncOperationContext
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\DiscoveryClient.cs (2)
1319class FindAsyncOperationContext : AsyncOperationContext 1371class ResolveAsyncOperationContext : AsyncOperationContext
39 references to AsyncOperationContext
System.ServiceModel.Discovery (39)
System\ServiceModel\Discovery\AsyncOperationLifetimeManager.cs (14)
20Dictionary<UniqueId, AsyncOperationContext> activeOperations; 25this.activeOperations = new Dictionary<UniqueId, AsyncOperationContext>(); 44public bool TryAdd(AsyncOperationContext context) 64public AsyncOperationContext[] Abort() 66AsyncOperationContext[] retValue = null; 73return new AsyncOperationContext[] { }; 80retValue = new AsyncOperationContext[this.activeOperations.Count]; 94public bool TryLookup(UniqueId operationId, out AsyncOperationContext context) 106public bool TryLookup<T>(UniqueId operationId, out T context) where T : AsyncOperationContext 108AsyncOperationContext asyncContext = null; 122public T Remove<T>(UniqueId operationId) where T : AsyncOperationContext 124AsyncOperationContext context = null; 149public bool TryRemoveUnique(object userState, out AsyncOperationContext context) 157foreach (AsyncOperationContext value in this.activeOperations.Values)
System\ServiceModel\Discovery\DiscoveryClient.cs (17)
40[Fx.Tag.Queue(typeof(AsyncOperationContext))] 508AsyncOperationContext context = null; 726AsyncOperationContext context = null; 820AsyncOperationContext context = new FindAsyncOperationContext( 867AsyncOperationContext context = 906void InitializeAsyncOperation(AsyncOperationContext context) 939AsyncOperationContext context = (AsyncOperationContext)state; 945AsyncOperationContext context = (AsyncOperationContext)result.AsyncState; 1030AsyncOperationContext context = (AsyncOperationContext)state; 1036AsyncOperationContext context = (AsyncOperationContext)result.AsyncState; 1100AsyncOperationContext context, 1131void StartTimer(AsyncOperationContext context, Action<object> operationTimeoutCallbackDelegate) 1176AsyncOperationContext[] activeOperations = this.asyncOperationsLifetimeManager.Abort();
System\ServiceModel\Discovery\Version11\DiscoveryInnerClientManaged11.cs (4)
90AsyncOperationContext context = (AsyncOperationContext)result.AsyncState; 108AsyncOperationContext context = (AsyncOperationContext)result.AsyncState;
System\ServiceModel\Discovery\VersionCD1\DiscoveryInnerClientManagedCD1.cs (4)
90AsyncOperationContext context = (AsyncOperationContext)result.AsyncState; 108AsyncOperationContext context = (AsyncOperationContext)result.AsyncState;