You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All of our OIDC and Entra sample solutions now include a separate web API project (`MinimalApiJwt`) to demonstrate how to configure and call an external web API securely. Calling web APIs is demonstrated with a token handler and named HTTP client for an OIDC identity provider or Microsoft Identity Web packages/API for Microsoft Entra ID.
10
10
@@ -75,7 +75,7 @@ public class CustomNavLink : NavLink
75
75
}
76
76
```
77
77
78
-
For more information, see <xref:blazor/fundamentals/routing#navlink-component>.
78
+
For more information, see <xref:blazor/fundamentals/routing?view=aspnetcore-10.0#navlink-component>.
79
79
80
80
### Close `QuickGrid` column options
81
81
@@ -391,7 +391,7 @@ The <xref:Microsoft.AspNetCore.Components.NavigationManager> now includes a `Not
391
391
392
392
***Static server-side rendering (static SSR)**: Calling `NotFound` sets the HTTP status code to 404.
393
393
***Streaming rendering**: Throws an exception if the response has already started.
394
-
***Interactive rendering**: Signals the Blazor router ([`Router` component](xref:blazor/fundamentals/routing#route-templates)) to render Not Found content.
394
+
***Interactive rendering**: Signals the Blazor router ([`Router` component](xref:blazor/fundamentals/routing?view=aspnetcore-10.0#route-templates)) to render Not Found content.
395
395
396
396
Per-page/component rendering support is planned for Preview 5 in June, 2025.
397
397
@@ -415,10 +415,10 @@ Blazor now provides an improved way to display a "Not Found" page when navigatin
415
415
416
416
The Blazor project template now includes a `NotFound.razor` page by default. This page automatically renders whenever `NavigationManager.NotFound` is called in your app, making it easier to handle missing routes with a consistent user experience.
417
417
418
-
For more information, see <xref:blazor/fundamentals/routing#not-found-responses>.
418
+
For more information, see <xref:blazor/fundamentals/routing?view=aspnetcore-10.0#not-found-responses>.
419
419
420
420
### Metrics and tracing
421
421
422
422
This release introduces comprehensive metrics and tracing capabilities for Blazor apps, providing detailed observability of the component lifecycle, navigation, event handling, and circuit management.
423
423
424
-
For more information, see <xref:blazor/performance/index#metrics-and-tracing>.
424
+
For more information, see <xref:blazor/performance/index?view=aspnetcore-10.0#metrics-and-tracing>.
0 commit comments