9 types derived from SqlWorkflowInstanceStoreAsyncResult
System.Activities.DurableInstancing (9)
System\Activities\DurableInstancing\DetectActivatableWorkflowsAsyncResult.cs (1)
15class DetectActivatableWorkflowsAsyncResult : SqlWorkflowInstanceStoreAsyncResult
System\Activities\DurableInstancing\DetectRunnableInstancesAsyncResult.cs (1)
15sealed class DetectRunnableInstancesAsyncResult : SqlWorkflowInstanceStoreAsyncResult
System\Activities\DurableInstancing\ExtendLockAsyncResult.cs (1)
14sealed class ExtendLockAsyncResult : SqlWorkflowInstanceStoreAsyncResult
System\Activities\DurableInstancing\LoadWorkflowAsyncResult.cs (1)
16class LoadWorkflowAsyncResult : SqlWorkflowInstanceStoreAsyncResult
System\Activities\DurableInstancing\RecoverInstanceLocksAsyncResult.cs (1)
14sealed class RecoverInstanceLocksAsyncResult : SqlWorkflowInstanceStoreAsyncResult
System\Activities\DurableInstancing\SaveWorkflowAsyncResult.cs (1)
22sealed class SaveWorkflowAsyncResult : SqlWorkflowInstanceStoreAsyncResult
System\Activities\DurableInstancing\TestVersionAndRunAsyncResult.cs (1)
17class TestDatabaseVersionAndRunAsyncResult : SqlWorkflowInstanceStoreAsyncResult
System\Activities\DurableInstancing\UnlockInstanceAsyncResult.cs (1)
13sealed class UnlockInstanceAsyncResult : SqlWorkflowInstanceStoreAsyncResult
System\Activities\DurableInstancing\WorkflowOwnerAsyncResult.cs (1)
16abstract class WorkflowOwnerAsyncResult : SqlWorkflowInstanceStoreAsyncResult
18 references to SqlWorkflowInstanceStoreAsyncResult
System.Activities.DurableInstancing (18)
System\Activities\DurableInstancing\PersistenceTask.cs (2)
108SqlWorkflowInstanceStoreAsyncResult sqlResult = (SqlWorkflowInstanceStoreAsyncResult) result;
System\Activities\DurableInstancing\SqlWorkflowInstanceStore.cs (4)
381else if (result is SqlWorkflowInstanceStoreAsyncResult) 383return SqlWorkflowInstanceStoreAsyncResult.End(result); 393SqlWorkflowInstanceStoreAsyncResult sqlWorkflowInstanceStoreAsyncResult = new TestDatabaseVersionAndRunAsyncResult(context, command, this, this.storeLock, Transaction.Current, timeout, targetVersion, callback, state); 405SqlWorkflowInstanceStoreAsyncResult sqlWorkflowInstanceStoreAsyncResult = null;
System\Activities\DurableInstancing\SqlWorkflowInstanceStoreAsyncResult.cs (12)
58this.OnCompleting += SqlWorkflowInstanceStoreAsyncResult.finallyCallback; 113AsyncResult.End<SqlWorkflowInstanceStoreAsyncResult>(result); 120ActionItem.Schedule(SqlWorkflowInstanceStoreAsyncResult.StartOperationCallback, this); 144SqlWorkflowInstanceStoreAsyncResult thisPtr = result as SqlWorkflowInstanceStoreAsyncResult; 173SqlWorkflowInstanceStoreAsyncResult thisPtr = (SqlWorkflowInstanceStoreAsyncResult)result.AsyncState; 187SqlWorkflowInstanceStoreAsyncResult thisPtr = (SqlWorkflowInstanceStoreAsyncResult)result.AsyncState; 222IAsyncResult bindReclaimedAsyncResult = thisPtr.InstancePersistenceContext.BeginBindReclaimedLock(reclaimLockAtVersion, thisPtr.TimeoutHelper.RemainingTime(), thisPtr.PrepareAsyncCompletion(SqlWorkflowInstanceStoreAsyncResult.onBindReclaimed), thisPtr); 257SqlWorkflowInstanceStoreAsyncResult sqlWorkflowInstanceStoreAsyncResult = (SqlWorkflowInstanceStoreAsyncResult) state;