10 writes to inProgressBind
System.Runtime.DurableInstancing (10)
System\Runtime\DurableInstancing\InstanceHandle.cs (10)
218Owner.CancelBind(ref this.inProgressBind, ref handlesPendingResolution); 246Owner.FaultBind(ref this.inProgressBind, ref handlesPendingResolution, null); 307Owner.StartBind(this, ref this.inProgressBind); 341Owner.InstanceBound(ref this.inProgressBind, ref handlesPendingResolution); 389return Owner.InitiateLockResolution(instanceVersion, ref this.inProgressBind, ref handlesPendingResolution); 412Owner.FaultBind(ref this.inProgressBind, ref handlesPendingResolution, reason); 435if (!Owner.FinishBind(ref this.inProgressBind, ref instanceVersion, ref handlesPendingResolution)) 522if (!Owner.TryCompleteBind(ref this.inProgressBind, ref handlesPendingResolution, out handleToFree)) 531Owner.CancelBind(ref this.inProgressBind, ref handlesPendingResolution); 660Owner.CancelBind(ref this.inProgressBind, ref handlesPendingResolution);
12 references to inProgressBind
System.Runtime.DurableInstancing (12)
System\Runtime\DurableInstancing\InstanceHandle.cs (12)
216if (this.inProgressBind != null) 240if (this.inProgressBind != null) 304Fx.Assert(this.inProgressBind == null, "StartPotentialBind should only be called once per command."); 317Fx.Assert(this.inProgressBind == null, "How did we get a bind in progress without an owner?"); 338if (this.inProgressBind != null) 364if (this.inProgressBind == null) 383if (this.inProgressBind == null) 406if (this.inProgressBind == null) 429if (this.inProgressBind == null) 517if (this.inProgressBind != null) 658if (this.inProgressBind != null && (Version == -1 || !IsValid)) 901Fx.Assert(this.handle.inProgressBind == null, "Either this should have been bound to a lock, hence dooming the handle by rollback, or this should have been cancelled in FinishOperation.");