diff --git a/aspnetcore/blazor/components/render-modes.md b/aspnetcore/blazor/components/render-modes.md index d8e1d77c1da3..2ecdde3d18c1 100644 --- a/aspnetcore/blazor/components/render-modes.md +++ b/aspnetcore/blazor/components/render-modes.md @@ -221,11 +221,10 @@ Prerendering is enabled by default for interactive components. Internal navigation for interactive routing doesn't involve requesting new page content from the server. Therefore, prerendering doesn't occur for internal page requests, including for [enhanced navigation](xref:blazor/fundamentals/routing#enhanced-navigation-and-form-handling). For more information, see [Static versus interactive routing](xref:blazor/fundamentals/routing#static-versus-interactive-routing), [Interactive routing and prerendering](xref:blazor/components/prerender#interactive-routing-and-prerendering), and [Enhanced navigation and form handling](xref:blazor/fundamentals/routing#enhanced-navigation-and-form-handling). - + -Disabling prerendering using the following techniques only takes effect for top-level render modes. If a parent component specifies a render mode, the prerendering settings of its children are ignored. This behavior is under investigation for possible changes with the release of .NET 10 in November, 2025. +Disabling prerendering using the following techniques only takes effect for top-level render modes. If a parent component specifies a render mode, the prerendering settings of its children are ignored. To disable prerendering for a *component instance*, pass the `prerender` flag with a value of `false` to the render mode: diff --git a/aspnetcore/fundamentals/openapi/aspnetcore-openapi.md b/aspnetcore/fundamentals/openapi/aspnetcore-openapi.md index 28ad14c4768a..10b500ba68f2 100644 --- a/aspnetcore/fundamentals/openapi/aspnetcore-openapi.md +++ b/aspnetcore/fundamentals/openapi/aspnetcore-openapi.md @@ -86,7 +86,7 @@ The OpenAPI document can be generated in either JSON or YAML format. By default, app.MapOpenApi("/openapi/{documentName}.yaml"); ``` -Generating penAPI documents in YAML format at build time is currently not supported, but planned in a future preview. +Generating OpenAPI documents in YAML format at build time is currently not supported, but planned in a future preview. ### Customize the OpenAPI document name diff --git a/aspnetcore/grpc/netstandard.md b/aspnetcore/grpc/netstandard.md index 6532064b0bf8..ddc50fcb7614 100644 --- a/aspnetcore/grpc/netstandard.md +++ b/aspnetcore/grpc/netstandard.md @@ -86,6 +86,9 @@ var client = new Greeter.GreeterClient(channel); var response = await client.SayHelloAsync(new HelloRequest { Name = ".NET" }); ``` +> [!NOTE] +> The gRPC client on .NET Framework is slower than on modern .NET versions. For improved gRPC performance, apps should be updated to use modern .NET. + ## gRPC C# core-library An alternative option for .NET Framework has been to use [gRPC C# core-library](https://grpc.io/docs/languages/csharp/quickstart/) to make gRPC calls. gRPC C# core-library is: