C# 클래스 FapChat.Wp8.Helpers.Navigation

파일 보기 프로젝트 열기: 0xdeafcafe/FapChat

공개 메소드들

메소드 설명
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

메소드 상세

GenerateNavigateUri() 공개 정적인 메소드

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
리턴 System.Uri

GenerateNavigateUrl() 공개 정적인 메소드

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.
리턴 string

NavigateTo() 공개 정적인 메소드

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.
리턴 void

NavigateTo() 공개 정적인 메소드

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

NavigateTo() 공개 정적인 메소드

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

NavigateToAndRemoveBackStack() 공개 정적인 메소드

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.
리턴 void