Class ConcreteRoute<TLeafViewModel>
A concrete route whose last route part maps to the TLeafViewModel view model type.
Namespace: Singulink.UI.Navigation
Assembly: Singulink.UI.Navigation.dll
Syntax
public sealed class ConcreteRoute<TLeafViewModel> : ConcreteRoute where TLeafViewModel : class
Type Parameters
| Name | Description |
|---|---|
| TLeafViewModel | The view model type of the last route part. |
Methods
| Name | Description |
|---|---|
| Then(IConcreteChildRoutePart<TLeafViewModel>) | Returns a new route with the specified child route part appended to this route. The child's view model type is not known statically, so the returned route cannot be extended further. |
| Then<TChildViewModel>(IConcreteChildRoutePart<TLeafViewModel, TChildViewModel>) | Returns a new route with the specified child route part appended to this route. |