Class Redirect
Represents a redirection to a different route.
Assembly: Singulink.UI.Navigation.dll
Syntax
public sealed class Redirect
Methods
| Name |
Description |
|
GoBack()
|
Navigates back to the previous view.
|
|
Navigate(IConcreteRootRoutePart, string?)
|
Navigates to the specified route.
|
|
Navigate(string)
|
Navigates to the specified route.
|
|
NavigatePartial(string?)
|
Navigates to a partial route that has the same path as the current route but with the specified options.
|
|
NavigatePartial<TParentViewModel>(IConcreteChildRoutePart<TParentViewModel>, string?)
|
Navigates to the specified partial route. The current route must contain a view with the specified parent view model type otherwise an InvalidOperationException is thrown.
|
|
NavigatePartial<TParentViewModel, TChildViewModel1>(IConcreteChildRoutePart<TParentViewModel, TChildViewModel1>, IConcreteChildRoutePart<TChildViewModel1>, string?)
|
Navigates to the specified partial route. The current route must contain a view with the specified parent view model type otherwise an InvalidOperationException is thrown.
|
|
NavigatePartial<TParentViewModel, TChildViewModel1, TChildViewModel2>(IConcreteChildRoutePart<TParentViewModel, TChildViewModel1>, IConcreteChildRoutePart<TChildViewModel1, TChildViewModel2>, IConcreteChildRoutePart<TChildViewModel2>, string?)
|
Navigates to the specified partial route. The current route must contain a view with the specified parent view model type otherwise an InvalidOperationException is thrown.
|
|
NavigateToParent<TParentViewModel>(string?)
|
Navigates to the parent view in the current route that has the specified view model type.
|
|
Navigate<TRootViewModel>(IConcreteRootRoutePart<TRootViewModel>, IConcreteChildRoutePart<TRootViewModel>, string?)
|
Navigates to the specified route.
|
|
Navigate<TRootViewModel, TChildViewModel1>(IConcreteRootRoutePart<TRootViewModel>, IConcreteChildRoutePart<TRootViewModel, TChildViewModel1>, IConcreteChildRoutePart<TChildViewModel1>, string?)
|
Navigates to the specified route.
|
|
Navigate<TRootViewModel, TChildViewModel1, TChildViewModel2>(IConcreteRootRoutePart<TRootViewModel>, IConcreteChildRoutePart<TRootViewModel, TChildViewModel1>, IConcreteChildRoutePart<TChildViewModel1, TChildViewModel2>, IConcreteChildRoutePart<TChildViewModel2>, string?)
|
Navigates to the specified route.
|