What's new .NET 9 - Blazor constructor injection sample (#33538)
parent
9568d179f1
commit
5c370db170
|
@ -148,7 +148,10 @@ In the following example, the partial (code-behind) class injects the `Navigatio
|
|||
```csharp
|
||||
public partial class ConstructorInjection(NavigationManager navigation)
|
||||
{
|
||||
protected NavigationManager Navigation { get; } = navigation;
|
||||
private void HandleClick()
|
||||
{
|
||||
navigation.NavigateTo("/counter");
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue