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