C# Class Microsoft.Practices.Prism.Regions.NavigationAsyncExtensions

Provides additional methods to the INavigateAsync interface.
Afficher le fichier Open project: xperiandri/PortablePrism

Méthodes publiques

Méthode Description
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.

Method Details

RequestNavigate() public static méthode

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
Résultat void

RequestNavigate() public static méthode

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
Résultat void

RequestNavigate() public static méthode

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.
Résultat void