Method Navigate
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
UriA 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
stringThe 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