internal void UnregisterBookmarkScope(BookmarkScope bookmarkScope)
 {
     this.executor.BookmarkScopeManager.UnregisterScope(bookmarkScope);
 }
        internal void UnregisterBookmarkScope(BookmarkScope bookmarkScope)
        {
            Fx.Assert(bookmarkScope != null, "The sub instance should not equal null.");

            this.executor.BookmarkScopeManager.UnregisterScope(bookmarkScope);
        }
Beispiel #3
0
 public Bookmark CreateBookmark(string name, BookmarkCallback callback, BookmarkScope scope, BookmarkOptions options)
 {
     throw new NotImplementedException();
 }
 internal BookmarkScopeHandle(BookmarkScope scope)
 {
     BookmarkScope = scope;
 }
Beispiel #5
0
 public bool RemoveBookmark(string name, BookmarkScope scope)
 {
     throw new NotImplementedException();
 }