2 writes to uninitializedScopes
System.Activities (2)
System\Activities\Runtime\BookmarkScopeManager.cs (2)
110
this.
uninitializedScopes
= value;
440
this.
uninitializedScopes
= new List<BookmarkScope>();
16 references to uninitializedScopes
System.Activities (16)
System\Activities\Runtime\BookmarkScopeManager.cs (16)
98
if (this.
uninitializedScopes
== null || this.
uninitializedScopes
.Count == 0)
104
return this.
uninitializedScopes
;
188
if (this.
uninitializedScopes
!= null)
190
for (int i = 0; i < this.
uninitializedScopes
.Count; i++)
192
BookmarkScope uninitializedScope = this.
uninitializedScopes
[i];
382
if (this.
uninitializedScopes
== null || !this.
uninitializedScopes
.Contains(lookupScope))
396
this.
uninitializedScopes
.Remove(lookupScope);
438
if (this.
uninitializedScopes
== null)
443
this.
uninitializedScopes
.Add(scope);
507
Fx.Assert(this.
uninitializedScopes
!= null && this.
uninitializedScopes
.Contains(scope), "Something is wrong with our housekeeping.");
509
this.
uninitializedScopes
.Remove(scope);
518
Fx.Assert(this.
uninitializedScopes
== null || !this.
uninitializedScopes
.Contains(scope), "We shouldn't have this in the uninitialized list.");