1 write to ImportantBookmarks
System.Activities (1)
System\Activities\ExclusiveHandle.cs (1)
184this.ImportantBookmarks = new ExclusiveHandleBookmarkList();
14 references to ImportantBookmarks
System.Activities (14)
System\Activities\ExclusiveHandle.cs (12)
114if ((this.ImportantBookmarks != null && this.ImportantBookmarks.Count != 0) || (this.UnimportantBookmarks != null && this.UnimportantBookmarks.Count != 0)) 140if ((this.ImportantBookmarks != null && this.ImportantBookmarks.Count != 0) || (this.UnimportantBookmarks != null && this.UnimportantBookmarks.Count != 0)) 182if (this.ImportantBookmarks == null) 187Fx.Assert(!this.ImportantBookmarks.Contains(bookmark), "We shouldnt be here. We attempted to add the same bookmark"); 188this.ImportantBookmarks.Add(bookmark); 220Fx.Assert((this.ImportantBookmarks != null && this.ImportantBookmarks.Contains(bookmark)) || 223if (this.ImportantBookmarks != null) 225if (this.ImportantBookmarks.Contains(bookmark)) 227this.ImportantBookmarks.Remove(bookmark);
System\Activities\Runtime\BookmarkScopeManager.cs (2)
557if ((handle.ImportantBookmarks != null && handle.ImportantBookmarks.Contains(bookmark)) && (handle.UnimportantBookmarks != null && handle.UnimportantBookmarks.Count != 0))