Method RemoveEntryAt
- Namespace
- DotNetBrowser.Navigation
- Assembly
- DotNetBrowser.dll
RemoveEntryAt(int)
Removes the item at the given index
from the back-forward list
and returns true if it was removed successfully.
bool RemoveEntryAt(int index)
Parameters
index
intThe location of the item to remove in the back-forward list. Cannot be negative, point to the current item, or more than the number of items in the back-forward list.
Returns
- bool
returns true if the item was removed successfully.
Exceptions
- ArgumentOutOfRangeException
The
index
is less than 0 or more than the number of items in the back-forward list.- ObjectDisposedException
The INavigation has already been disposed.