diff --git a/docs/dotnet/C#/C#.md b/docs/dotnet/C#/C#.md
index 5481d2d..e2ef3fb 100644
--- a/docs/dotnet/C#/C#.md
+++ b/docs/dotnet/C#/C#.md
@@ -1341,6 +1341,7 @@ protected // visible only to the same class and extending classes
internal // available for use only within the assembly (default for classes)
protected internal // can be accessed by any code in the assembly in which it's declared, or from within a derived class in another assembly
private protected // can be accessed only within its declaring assembly, by code in the same class or in a type that is derived from that class
+file // can be accessed only in the same file in which is declared. Will not clash with other classes/method/interface with the same name
readonly // value can be read but not modified
static // not of the instance of a class
@@ -1437,10 +1438,7 @@ class Class
set => _backingField = value;
}
- // access backing field with the field keyword [C# 11?]
- public Type Property { get => field; set => field = value; }
-
- // required property [C# 11?], prop must be set at obj init (in constructor or initializer)
+ // REQUIRED PROPERTY prop must be set at obj init (in constructor or initializer)
public required Type Property { get; set; }
// EXPRESSION-BODIED READ-ONLY PROPERTY
@@ -2913,7 +2911,7 @@ unsafe
}
```
-### DllImport & Extern
+### External Code
The `extern` modifier is used to declare a method that is implemented externally.
A common use of the extern modifier is with the `DllImport` attribute when using Interop services to call into _unmanaged_ code.
diff --git a/docs/dotnet/asp.net/blazor.md b/docs/dotnet/asp.net/blazor.md
index b25492c..5c45eb1 100644
--- a/docs/dotnet/asp.net/blazor.md
+++ b/docs/dotnet/asp.net/blazor.md
@@ -261,6 +261,16 @@ Project
## State Management
+## Passing state with `NavigationManager`
+
+It's now possible to pass state when navigating in Blazor apps using the `NavigationManager`.
+
+```cs
+navigationManager.NavigateTo("/", new NavigationOptions { HistoryEntryState = value });
+```
+
+This mechanism allows for simple communication between different pages. The specified state is pushed onto the browser’s history stack so that it can be accessed later using either the `NavigationManager.HistoryEntryState` property or the `LocationChangedEventArgs.HistoryEntryState` property when listening for location changed events.
+
### Blazor WASM
```cs
@@ -355,6 +365,9 @@ public class StateContainer
// bind to child component {PROPERTY}
// bind to child component {PROPERTY}, listen for custom event
+
+ // run async logic after bind event completion
+ // two-way data binding
@code {
@@ -372,11 +385,17 @@ public class StateContainer
await PropertyChanged.InvokeAsync(e, argument); // notify parent bound prop has changed
await elementReference.FocusAsync(); // focus an element in code
}
+
+ [Parameter] public TValue Value { get; set; }
+ [Parameter] public EventCallback ValueChanged { get; set; }
}
```
> **Note**: When a user provides an unparsable value to a data-bound element, the unparsable value is automatically reverted to its previous value when the bind event is triggered.
+> **Note**: The `@bind:get` and `@bind:set` modifiers are always used together.
+> `The @bind:get` modifier specifies the value to bind to and the `@bind:set` modifier specifies a callback that is called when the value changes
+
## Javascript/.NET Interop
[Call Javascript from .NET](https://docs.microsoft.com/en-us/aspnet/core/blazor/call-javascript-from-dotnet)
diff --git a/docs/dotnet/asp.net/minimal-api.md b/docs/dotnet/asp.net/minimal-api.md
index 2849540..8049393 100644
--- a/docs/dotnet/asp.net/minimal-api.md
+++ b/docs/dotnet/asp.net/minimal-api.md
@@ -84,6 +84,80 @@ app.MapGet("/search/{id}", Search);
IResult Search(int id, int? page = 1, int? pageSize = 10) { /* ... */ }
```
+### Route Groups
+
+The `MapGroup()` extension method, which helps organize groups of endpoints with a common prefix.
+It allows for customizing entire groups of endpoints with a singe call to methods like `RequireAuthorization()` and `WithMetadata()`.
+
+```cs
+var group = app.MapGroup("");
+
+group.MapGet("/", GetAllTodos); // route: /
+group.MapGet("/{id}", GetTodo); // route: //{id}
+
+// [...]
+```
+
+### `TypedResults`
+
+The `Microsoft.AspNetCore.Http.TypedResults` static class is the “typed” equivalent of the existing `Microsoft.AspNetCore.Http.Results` class.
+It's possible to use `TypedResults` in minimal APIs to create instances of the in-framework `IResult`-implementing types and preserve the concrete type information.
+
+```cs
+public static async Task GetAllTodos(TodoDb db)
+{
+ return TypedResults.Ok(await db.Todos.ToArrayAsync());
+}
+```
+
+```cs
+[Fact]
+public async Task GetAllTodos_ReturnsOkOfObjectResult()
+{
+ // Arrange
+ var db = CreateDbContext();
+
+ // Act
+ var result = await TodosApi.GetAllTodos(db);
+
+ // Assert: Check the returned result type is correct
+ Assert.IsType>(result);
+}
+```
+
+### Multiple Result Types
+
+The `Results` generic union types, along with the `TypesResults` class, can be used to declare that a route handler returns multiple `IResult`-implementing concrete types.
+
+```cs
+// Declare that the lambda returns multiple IResult types
+app.MapGet("/todos/{id}", async Results, NotFound> (int id, TodoDb db)
+{
+ return await db.Todos.FindAsync(id) is Todo todo
+ ? TypedResults.Ok(todo)
+ : TypedResults.NotFound();
+});
+```
+
+## Filters
+
+```cs
+public class ExampleFilter : IRouteHandlerFilter
+{
+ public async ValueTask