1 override of BeginLoad
System.WorkflowServices (1)
System\ServiceModel\Persistence\SqlPersistenceProviderFactory.cs (1)
1263public override IAsyncResult BeginLoad(TimeSpan timeout, bool lockInstance, AsyncCallback callback, object state)
3 references to BeginLoad
System.WorkflowServices (3)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (1)
804result = this.durableInstance.lockingProvider.BeginLoad(this.durableInstance.operationTimeout, true, loadCallback, this);
System\ServiceModel\Persistence\LockingPersistenceProvider.cs (2)
25return this.BeginLoad(timeout, false, callback, state); 37return this.BeginLoad(timeout, lockInstance, callback, state);