1 write to factory
System.WorkflowServices (1)
System\ServiceModel\Persistence\SqlPersistenceProviderFactory.cs (1)
1238this.factory = factory;
15 references to factory
System.WorkflowServices (15)
System\ServiceModel\Persistence\SqlPersistenceProviderFactory.cs (15)
1254return this.factory.BeginCreate(this.Id, instance, timeout, unlockInstance, callback, state); 1260return this.factory.BeginDelete(this.Id, instance, timeout, callback, state); 1266return this.factory.BeginLoad(this.Id, timeout, lockInstance, callback, state); 1272return this.factory.BeginUnlock(this.Id, timeout, callback, state); 1278return this.factory.BeginUpdate(this.Id, instance, timeout, unlockInstance, callback, state); 1284return this.factory.Create(this.Id, instance, timeout, unlockInstance); 1290this.factory.Delete(this.Id, instance, timeout); 1295return this.factory.EndCreate(result); 1300this.factory.EndDelete(result); 1305return this.factory.EndLoad(result); 1310this.factory.EndUnlock(result); 1315return this.factory.EndUpdate(result); 1321return this.factory.Load(this.Id, timeout, lockInstance); 1327this.factory.Unlock(this.Id, timeout); 1333return this.factory.Update(this.Id, instance, timeout, unlockInstance);