NavigationShell.Navigate(string?, object?) method¶
Defined in
Type: NavigationShell
Namespace: ReactiveMarbles.ViewModel.MAUI
Assembly: ReactiveMarbles.ViewModel.MAUI.dll
Applies to
net8.0-android34.0, net8.0-ios17.2, net8.0-windows10.0.19041, net8.0-maccatalyst17.2
Overloads¶
- 1.
public void Navigate<T>(string? contract = null, object? parameter = null) where T : class, IRxNavBase - 2.
public void Navigate(IRxNavBase viewModel, object? parameter = null)
1. Overload¶
public void Navigate<T>(string? contract = null, object? parameter = null) where T : class, IRxNavBase
Summary: Navigates the ViewModel contract.
Type parameters
| Name | Description |
|---|---|
T | The Type. |
Parameters
| Name | Type | Description |
|---|---|---|
contract = null | string? | The contract. |
parameter = null | object? | The parameter. |
2. Overload¶
public void Navigate(IRxNavBase viewModel, object? parameter = null)
Summary: Navigates the specified contract.
Parameters
| Name | Type | Description |
|---|---|---|
viewModel | [IRxNavBase](# | The view model. |
parameter = null | object? | The parameter. |