ModulePage.Navigate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
- navigationData
- Object
Arbitrary data.
Returns
true
if navigation was successful; otherwise, false
.
Remarks
If the target page is not registered, navigation fails.