9 references to BoundHandles
System.Runtime.DurableInstancing (9)
System\Runtime\DurableInstancing\InstanceStore.cs (9)
173if (normal.BoundHandles.Count > 0) 175handlesToNotify = normal.BoundHandles.ToArray(); 216if (normal.BoundHandles.Count == 0 && normal.PendingHandles.Count == 0) 342Fx.Assert(!normal.BoundHandles.Contains(handle), "Should not be able to pend an already-bound handle."); 356Fx.Assert(!normal.BoundHandles.Contains(handle), "Should not be able to add a handle to an event twice."); 357normal.BoundHandles.Add(handle); 397Fx.Assert(normal.BoundHandles.Contains(handle) || normal.PendingHandles.Contains(handle), "Event should still have handle registration."); 400normal.BoundHandles.Remove(handle); 401if (!normal.IsSignaled && normal.BoundHandles.Count == 0 && normal.PendingHandles.Count == 0)