Method NavigatePartialAsync
NavigatePartialAsync(string?)
Navigates to a partial route that has the same path as the current route but with the specified options.
Declaration
public Task<NavigationResult> NavigatePartialAsync(string? anchor)
Parameters
| Type |
Name |
Description |
| string |
anchor |
|
Returns
Implements
NavigatePartialAsync<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.
Declaration
public Task<NavigationResult> NavigatePartialAsync<TParentViewModel>(IConcreteChildRoutePart<TParentViewModel> childRoutePart, string? anchor = null) where TParentViewModel : class
Parameters
Returns
Type Parameters
| Name |
Description |
| TParentViewModel |
|
Implements
NavigatePartialAsync<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.
Declaration
public Task<NavigationResult> NavigatePartialAsync<TParentViewModel, TChildViewModel1>(IConcreteChildRoutePart<TParentViewModel, TChildViewModel1> childRoutePart1, IConcreteChildRoutePart<TChildViewModel1> childRoutePart2, string? anchor = null) where TParentViewModel : class where TChildViewModel1 : class
Parameters
Returns
Type Parameters
| Name |
Description |
| TParentViewModel |
|
| TChildViewModel1 |
|
Implements
NavigatePartialAsync<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.
Declaration
public Task<NavigationResult> NavigatePartialAsync<TParentViewModel, TChildViewModel1, TChildViewModel2>(IConcreteChildRoutePart<TParentViewModel, TChildViewModel1> childRoutePart1, IConcreteChildRoutePart<TChildViewModel1, TChildViewModel2> childRoutePart2, IConcreteChildRoutePart<TChildViewModel2> childRoutePart3, string? anchor = null) where TParentViewModel : class where TChildViewModel1 : class where TChildViewModel2 : class
Parameters
Returns
Type Parameters
| Name |
Description |
| TParentViewModel |
|
| TChildViewModel1 |
|
| TChildViewModel2 |
|
Implements