C# 클래스 Microsoft.Practices.Prism.Regions.NavigationAsyncExtensions

Provides additional methods to the INavigateAsync interface.
파일 보기 프로젝트 열기: xperiandri/PortablePrism

공개 메소드들

메소드 설명
RequestNavigate ( this navigation, Uri target ) : void

Initiates navigation to the target specified by the Uri.

RequestNavigate ( this navigation, string target ) : void

Initiates navigation to the target specified by the target.

RequestNavigate ( this navigation, string target, Action navigationCallback ) : void

Initiates navigation to the target specified by the target.

메소드 상세

RequestNavigate() 공개 정적인 메소드

Initiates navigation to the target specified by the Uri.
public static RequestNavigate ( this navigation, Uri target ) : void
navigation this The navigation object.
target System.Uri The navigation target
리턴 void

RequestNavigate() 공개 정적인 메소드

Initiates navigation to the target specified by the target.
public static RequestNavigate ( this navigation, string target ) : void
navigation this The navigation object.
target string The navigation target
리턴 void

RequestNavigate() 공개 정적인 메소드

Initiates navigation to the target specified by the target.
public static RequestNavigate ( this navigation, string target, Action navigationCallback ) : void
navigation this The navigation object.
target string The navigation target
navigationCallback Action The callback executed when the navigation request is completed.
리턴 void