Click or drag to resize

INavigationRemoveEntryAt Method

Removes the item at the given index from the back-forward list and returns true if it was removed successfully.

Namespace:  DotNetBrowser.Navigation
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.13.0
Syntax
C#
bool RemoveEntryAt(
	int index
)

Parameters

index
Type: SystemInt32
The 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.

Return Value

Type: Boolean
returns true if the item was removed successfully.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException The index is less than 0 or more than the number of items in the back-forward list.
ObjectDisposedExceptionThe INavigation has already been disposed.
See Also