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);
        }
Ejemplo n.º 3
0
 public Bookmark CreateBookmark(string name, BookmarkCallback callback, BookmarkScope scope, BookmarkOptions options)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
 internal BookmarkScopeHandle(BookmarkScope scope)
 {
     BookmarkScope = scope;
 }
Ejemplo n.º 5
0
 public bool RemoveBookmark(string name, BookmarkScope scope)
 {
     throw new NotImplementedException();
 }