CoreWebView2.Navigate(String) Method

Definition

Causes a navigation of the top level document to the specified URI.

public void Navigate (string uri);
member this.Navigate : string -> unit
Public Sub Navigate (uri As String)

Parameters

uri
String

The URI to navigate to.

Examples

// Setting webView.Source will not trigger a navigation if the Source is the same
// as the previous Source.  CoreWebView.Navigate() will always trigger a navigation.
webView.CoreWebView2.Navigate(uri.ToString());

Remarks

For more information, navigate to Navigation event. Note that this operation starts a navigation and the corresponding NavigationStarting event is raised sometime after Navigate runs.

Applies to

See also