Defines an interface allowing the user to access the browser's history and to navigate to a given URL.
public interface INavigation
Methods Back()
Move back a single entry in the browser's history.
BackAsync()Move back a single entry in the browser's history as an asynchronous task.
ReturnsA task object representing the asynchronous operation.
Move a single "item" forward in the browser's history.
ForwardAsync()Move a single "item" forward in the browser's history as an asynchronous task.
ReturnsA task object representing the asynchronous operation.
Load a new web page in the current browser window.
Parametersurl
string
The URL to load. It is best to use a fully qualified URL
If url
is null.
Load a new web page in the current browser window.
Parametersurl
Uri
The URL to load.
If url
is null.
Navigate to a url as an asynchronous task.
Task GoToUrlAsync(string url)
Parameters
url
string
String of where you want the browser to go.
A task object representing the asynchronous operation.
If url
is null.
Navigate to a url as an asynchronous task.
Task GoToUrlAsync(Uri url)
Parameters
url
Uri
Uri object of where you want the browser to go.
A task object representing the asynchronous operation.
If url
is null.
Refreshes the current page.
RefreshAsync()Reload the current page as an asynchronous task.
ReturnsA task object representing the asynchronous operation.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4