C# Класс Microsoft.Practices.Prism.Regions.NavigationAsyncExtensions

Provides additional methods to the INavigateAsync interface.
Показать файл Открыть проект

Открытые методы

Метод Описание
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