Table of Contents

Method Navigate

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

Navigate(Uri)

Loads the document at the location indicated by the specified Uri into the WebBrowser control, replacing the previous document.

void Navigate(Uri source)

Parameters

source Uri

A Uri representing the URL of the document to load. If this parameter is null, WebBrowser navigates to a blank document.

See Also

Navigate(string)

Loads the document at the specified Uniform Resource Locator (URL) into the WebBrowser control, replacing the previous document.

void Navigate(string urlString)

Parameters

urlString string

The URL of the document to load. If this parameter is null, WebBrowser navigates to a blank document. You must always specify protocol prefix (https, file or other). Not all browser backends support loading of the web pages without protocol prefix.

See Also