What's new .NET 9 - Blazor constructor injection sample (#33538)

pull/33540/head
Robert Haken 2024-09-05 17:14:03 +02:00 committed by GitHub
parent 9568d179f1
commit 5c370db170
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -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");
}
}
```