Method NavigatePartialAsync
NavigatePartialAsync(string?)
Navigates to a partial route that has the same path as the current route but with the specified options.
Declaration
Task<NavigationResult> NavigatePartialAsync(string? anchor)
Parameters
| Type |
Name |
Description |
| string |
anchor |
|
Returns
NavigatePartialAsync<TParentViewModel>(IConcreteChildRoutePart<TParentViewModel>, string?)
Navigates to the specified child route beneath the parent view model type in the current route. The current route must contain a view with the
specified parent view model type otherwise an InvalidOperationException is thrown.
Declaration
Task<NavigationResult> NavigatePartialAsync<TParentViewModel>(IConcreteChildRoutePart<TParentViewModel> childRoutePart, string? anchor = null) where TParentViewModel : class
Parameters
Returns
Type Parameters
| Name |
Description |
| TParentViewModel |
|
NavigatePartialAsync<TParentViewModel>(ConcretePartialRoute<TParentViewModel>, string?)
Navigates to the specified partial route beneath the parent view model type in the current route. The current route must contain a view with the
specified parent view model type otherwise an InvalidOperationException is thrown.
Declaration
Task<NavigationResult> NavigatePartialAsync<TParentViewModel>(ConcretePartialRoute<TParentViewModel> route, string? anchor = null) where TParentViewModel : class
Parameters
Returns
Type Parameters
| Name |
Description |
| TParentViewModel |
|