NavigationManager.NavigateToCore Method

Definition

Overloads

NavigateToCore(String, NavigationOptions)

Navigates to the specified URI.

NavigateToCore(String, Boolean)

Navigates to the specified URI.

NavigateToCore(String, NavigationOptions)

Source:
NavigationManager.cs
Source:
NavigationManager.cs
Source:
NavigationManager.cs

Navigates to the specified URI.

protected virtual void NavigateToCore (string uri, Microsoft.AspNetCore.Components.NavigationOptions options);
abstract member NavigateToCore : string * Microsoft.AspNetCore.Components.NavigationOptions -> unit
override this.NavigateToCore : string * Microsoft.AspNetCore.Components.NavigationOptions -> unit
Protected Overridable Sub NavigateToCore (uri As String, options As NavigationOptions)

Parameters

uri
String

The destination URI. This can be absolute, or relative to the base URI (as returned by BaseUri).

options
NavigationOptions

Provides additional NavigationOptions.

Applies to

NavigateToCore(String, Boolean)

Source:
NavigationManager.cs
Source:
NavigationManager.cs
Source:
NavigationManager.cs
Source:
NavigationManager.cs
Source:
NavigationManager.cs
Source:
NavigationManager.cs

Navigates to the specified URI.

protected:
 abstract void NavigateToCore(System::String ^ uri, bool forceLoad);
protected abstract void NavigateToCore (string uri, bool forceLoad);
protected virtual void NavigateToCore (string uri, bool forceLoad);
abstract member NavigateToCore : string * bool -> unit
abstract member NavigateToCore : string * bool -> unit
override this.NavigateToCore : string * bool -> unit
Protected MustOverride Sub NavigateToCore (uri As String, forceLoad As Boolean)
Protected Overridable Sub NavigateToCore (uri As String, forceLoad As Boolean)

Parameters

uri
String

The destination URI. This can be absolute, or relative to the base URI (as returned by BaseUri).

forceLoad
Boolean

If true, bypasses client-side routing and forces the browser to load the new page from the server, whether or not the URI would normally be handled by the client-side router.

Applies to