1 write to UnimportantBookmarks
System.Activities (1)
System\Activities\ExclusiveHandle.cs (1)
203this.UnimportantBookmarks = new ExclusiveHandleBookmarkList();
14 references to UnimportantBookmarks
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)) 201if (this.UnimportantBookmarks == null) 206Fx.Assert(!this.UnimportantBookmarks.Contains(bookmark), "We shouldnt be here. We attempted to add the same bookmark"); 207this.UnimportantBookmarks.Add(bookmark); 221(this.UnimportantBookmarks != null && this.UnimportantBookmarks.Contains(bookmark)), "Internal error"); 232if (this.UnimportantBookmarks != null) 234if (this.UnimportantBookmarks.Contains(bookmark)) 236this.UnimportantBookmarks.Remove(bookmark);
System\Activities\Runtime\BookmarkScopeManager.cs (2)
557if ((handle.ImportantBookmarks != null && handle.ImportantBookmarks.Contains(bookmark)) && (handle.UnimportantBookmarks != null && handle.UnimportantBookmarks.Count != 0))