2 writes to ExclusiveHandles
System.Activities (2)
System\Activities\ExclusiveHandle.cs (2)
192bookmark.ExclusiveHandles = new ExclusiveHandleList(); 211bookmark.ExclusiveHandles = new ExclusiveHandleList();
12 references to ExclusiveHandles
System.Activities (12)
System\Activities\ExclusiveHandle.cs (6)
190if (bookmark.ExclusiveHandles == null) 195Fx.Assert(!bookmark.ExclusiveHandles.Contains(this), "We shouldnt be here. We attempted to add the bookmark to this exclusive handle already"); 196bookmark.ExclusiveHandles.Add(this); 209if (bookmark.ExclusiveHandles == null) 214Fx.Assert(!bookmark.ExclusiveHandles.Contains(this), "We shouldnt be here. We attempted to add the bookmark to this exclusive handle already"); 215bookmark.ExclusiveHandles.Add(this);
System\Activities\Runtime\BookmarkManager.cs (3)
318if (bookmark.ExclusiveHandles != null) 320for (int i = 0; i < bookmark.ExclusiveHandles.Count; i++) 322ExclusiveHandle handle = bookmark.ExclusiveHandles[i];
System\Activities\Runtime\BookmarkScopeManager.cs (3)
551if (bookmark.ExclusiveHandles != null) 553for (int i = 0; i < bookmark.ExclusiveHandles.Count; i++) 555ExclusiveHandle handle = bookmark.ExclusiveHandles[i];