ModulePage.Navigate Method

Definition

Navigates to the target page.

Overloads

Navigate(Type)

Navigates to the target page.

Navigate(Type, Object)

Navigates to the target page with a payload.

Navigate(Type)

Navigates to the target page.

protected:
 bool Navigate(Type ^ pageType);
protected bool Navigate (Type pageType);
member this.Navigate : Type -> bool
Protected Function Navigate (pageType As Type) As Boolean

Parameters

pageType
Type

The Type of the target page.

Returns

true if navigation was successful; otherwise, false.

Remarks

If the target page is not registered, navigation fails.

Applies to

Navigate(Type, Object)

Navigates to the target page with a payload.

protected:
 bool Navigate(Type ^ pageType, System::Object ^ navigationData);
protected bool Navigate (Type pageType, object navigationData);
member this.Navigate : Type * obj -> bool
Protected Function Navigate (pageType As Type, navigationData As Object) As Boolean

Parameters

pageType
Type

The Type of the target page.

navigationData
Object

Arbitrary data.

Returns

true if navigation was successful; otherwise, false.

Remarks

If the target page is not registered, navigation fails.

Applies to