1 instantiation of BookmarkScopeHandle
System.Activities (1)
System\Activities\BookmarkScopeHandle.cs (1)
17static BookmarkScopeHandle defaultBookmarkScopeHandle = new BookmarkScopeHandle(BookmarkScope.Default);
25 references to BookmarkScopeHandle
System.Activities (22)
System\Activities\BookmarkScopeHandle.cs (2)
17static BookmarkScopeHandle defaultBookmarkScopeHandle = new BookmarkScopeHandle(BookmarkScope.Default); 32public static BookmarkScopeHandle Default
System\Activities\ExclusiveHandle.cs (14)
19ReadOnlyCollection<BookmarkScopeHandle> readOnlyBookmarkScopeCollection; 21List<BookmarkScopeHandle> bookmarkScopes; 38public ReadOnlyCollection<BookmarkScopeHandle> RegisteredBookmarkScopes 44return new ReadOnlyCollection<BookmarkScopeHandle>(new List<BookmarkScopeHandle>()); 49this.readOnlyBookmarkScopeCollection = new ReadOnlyCollection<BookmarkScopeHandle>(this.bookmarkScopes); 56internal List<BookmarkScopeHandle> SerializedBookmarkScopes 100public void RegisterBookmarkScope(NativeActivityContext context, BookmarkScopeHandle bookmarkScopeHandle) 245this.bookmarkScopes = new List<BookmarkScopeHandle>(); 249this.bookmarkScopes.Add(BookmarkScopeHandle.Default); 272BookmarkScopeHandle scopeHandle = handles[i] as BookmarkScopeHandle; 289BookmarkScopeHandle scopeHandle = executorHandles[i] as BookmarkScopeHandle;
System\Activities\NativeActivityContext.cs (1)
370internal BookmarkScope CreateBookmarkScope(Guid scopeId, BookmarkScopeHandle scopeHandle)
System\Activities\Runtime\BookmarkManager.cs (4)
22BookmarkScopeHandle scopeHandle; 29internal BookmarkManager(BookmarkScope scope, BookmarkScopeHandle scopeHandle) 67internal BookmarkScopeHandle SerializedScopeHandle 131foreach (BookmarkScopeHandle bookmarkScopeHandle in handle.RegisteredBookmarkScopes)
System\Activities\Runtime\BookmarkScopeManager.cs (1)
417internal BookmarkScope CreateAndRegisterScope(Guid scopeId, BookmarkScopeHandle scopeHandle)
System.ServiceModel.Activities (3)
System\ServiceModel\Activities\CorrelationHandle.cs (3)
42BookmarkScopeHandle bookmarkScopeHandle; 57internal BookmarkScopeHandle SerializedBookmarkScopeHandle 167this.bookmarkScopeHandle = context.CreateAndInitializeHandle<BookmarkScopeHandle>();