C# Class FapChat.Wp8.Helpers.Navigation

Show file Open project: 0xdeafcafe/FapChat

Public Methods

Method Description
GenerateNavigateUri ( NavigationTarget target ) : Uri

Generates a Windows Phone Path Uri to the target you want to navigate to

GenerateNavigateUrl ( NavigationTarget target, string>.Dictionary queryParams = null ) : string

Generates a Windows Phone Path Url to the target you want to navigate to

NavigateTo ( NavigationTarget target, string>.Dictionary queryParams = null ) : void

Navigates to the specified path

NavigateTo ( Uri path ) : void

Navigates to the specified path

NavigateTo ( string path ) : void

Navigates to the specified path

NavigateToAndRemoveBackStack ( NavigationTarget target, string>.Dictionary queryParams = null ) : void

Navigates to the specified path, and removes the backstack

Method Details

GenerateNavigateUri() public static method

Generates a Windows Phone Path Uri to the target you want to navigate to
public static GenerateNavigateUri ( NavigationTarget target ) : Uri
target NavigationTarget The target to navigate to
return System.Uri

GenerateNavigateUrl() public static method

Generates a Windows Phone Path Url to the target you want to navigate to
public static GenerateNavigateUrl ( NavigationTarget target, string>.Dictionary queryParams = null ) : string
target NavigationTarget The target to navigate to
queryParams string>.Dictionary Optional extra query string params.
return string

NavigateTo() public static method

Navigates to the specified path
public static NavigateTo ( NavigationTarget target, string>.Dictionary queryParams = null ) : void
target NavigationTarget The target to navigate to.
queryParams string>.Dictionary Optional extra query string params.
return void

NavigateTo() public static method

Navigates to the specified path
public static NavigateTo ( Uri path ) : void
path System.Uri The Uri path to navigate to.
return void

NavigateTo() public static method

Navigates to the specified path
public static NavigateTo ( string path ) : void
path string The Url path to navigate to.
return void

NavigateToAndRemoveBackStack() public static method

Navigates to the specified path, and removes the backstack
public static NavigateToAndRemoveBackStack ( NavigationTarget target, string>.Dictionary queryParams = null ) : void
target NavigationTarget The target to navigate to.
queryParams string>.Dictionary Optional extra query string params.
return void