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