3 writes to temporaryId
System.Activities (3)
System\Activities\BookmarkScope.cs (3)
28
this.
temporaryId
= temporaryId;
62
this.
temporaryId
= default(long);
80
set { this.
temporaryId
= value; }
8 references to temporaryId
System.Activities (8)
System\Activities\BookmarkScope.cs (8)
46
return this.
temporaryId
== default(long);
79
get { return this.
temporaryId
; }
94
return this.
temporaryId
;
153
return this.
temporaryId
.GetHashCode();
165
return new BookmarkScopeInfo(this.
temporaryId
.ToString(CultureInfo.InvariantCulture));
200
Fx.Assert(this.
temporaryId
!= 0, "We should have a non-zero temp id if we're not the default and not initialized.");
202
if (other.
temporaryId
== this.
temporaryId
)