3 writes to SurrogateLockOwnerId
System.Activities.DurableInstancing (3)
System\Activities\DurableInstancing\SqlWorkflowInstanceStoreLock.cs (3)
27this.SurrogateLockOwnerId = -1; 113this.SurrogateLockOwnerId = surrogateLockOwnerId; 201this.SurrogateLockOwnerId = -1;
12 references to SurrogateLockOwnerId
System.Activities.DurableInstancing (12)
System\Activities\DurableInstancing\DeleteWorkflowOwnerAsyncResult.cs (1)
36this.surrogateLockOwnerId = base.StoreLock.SurrogateLockOwnerId;
System\Activities\DurableInstancing\DetectRunnableInstancesAsyncResult.cs (1)
49sqlCommand.Parameters.Add(new SqlParameter { ParameterName = "@surrogateLockOwnerId", SqlDbType = SqlDbType.BigInt, Value = base.StoreLock.SurrogateLockOwnerId });
System\Activities\DurableInstancing\ExtendLockAsyncResult.cs (1)
45long surrogateOwnerId = base.StoreLock.SurrogateLockOwnerId;
System\Activities\DurableInstancing\LoadWorkflowAsyncResult.cs (1)
53long surrogateLockOwnerId = base.StoreLock.SurrogateLockOwnerId;
System\Activities\DurableInstancing\PersistenceTask.cs (1)
29this.SurrogateLockOwnerId = this.StoreLock.SurrogateLockOwnerId;
System\Activities\DurableInstancing\SaveWorkflowAsyncResult.cs (1)
75parameters.Add(new SqlParameter { ParameterName = "@surrogateLockOwnerId", SqlDbType = SqlDbType.BigInt, Value = base.StoreLock.SurrogateLockOwnerId });
System\Activities\DurableInstancing\SqlWorkflowInstanceStore.cs (1)
494SurrogateOwnerId = this.storeLock.SurrogateLockOwnerId,
System\Activities\DurableInstancing\SqlWorkflowInstanceStoreLock.cs (4)
40return IsLockOwnerValid(this.SurrogateLockOwnerId); 46return (this.SurrogateLockOwnerId != -1) 47&& (surrogateLockOwnerId == this.SurrogateLockOwnerId) 199if (this.SurrogateLockOwnerId == surrogateLockOwnerId)
System\Activities\DurableInstancing\TryLoadRunnableWorkflowAsyncResult.cs (1)
41command.Parameters.Add(new SqlParameter { ParameterName = "@surrogateLockOwnerId", SqlDbType = SqlDbType.BigInt, Value = base.StoreLock.SurrogateLockOwnerId });