From c01a1b99b3f9e326532917434cf15f40d8632f47 Mon Sep 17 00:00:00 2001 From: guardrex <1622880+guardrex@users.noreply.github.com> Date: Thu, 13 Jul 2023 08:38:40 -0400 Subject: [PATCH 1/3] Sections Pre6 updates --- aspnetcore/blazor/components/sections.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/aspnetcore/blazor/components/sections.md b/aspnetcore/blazor/components/sections.md index 1430999248d4..7ee2b82938ca 100644 --- a/aspnetcore/blazor/components/sections.md +++ b/aspnetcore/blazor/components/sections.md @@ -78,3 +78,14 @@ When the `Counter` component is accessed, the `MainLayout` component renders the > [!NOTE] > `SectionOutlet` and `SectionContent` components can only set either `SectionId` or `SectionName`, not both. + +## Section interaction with other Blazor features + +Sections interact with other Blazor features in the following ways: + +* [Cascading values](xref:blazor/components/cascading-values-and-parameters) flow into section content from where the content is defined by the `SectionContent` component. +* Unhandled exceptions are handled by [error boundaries](xref:blazor/fundamentals/handle-errors#error-boundaries) defined around `SectionContent` components. +* Razor components that are configured for streaming rendering also automatically configure section content provided by one or more `SectionContent` components to use streaming rendering. + + + From abb38e6dc6549e6baccce76ac629fc58eb887d32 Mon Sep 17 00:00:00 2001 From: guardrex <1622880+guardrex@users.noreply.github.com> Date: Thu, 13 Jul 2023 08:42:39 -0400 Subject: [PATCH 2/3] Updates --- aspnetcore/blazor/components/sections.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aspnetcore/blazor/components/sections.md b/aspnetcore/blazor/components/sections.md index 7ee2b82938ca..1e6f56c1ee84 100644 --- a/aspnetcore/blazor/components/sections.md +++ b/aspnetcore/blazor/components/sections.md @@ -81,11 +81,11 @@ When the `Counter` component is accessed, the `MainLayout` component renders the ## Section interaction with other Blazor features -Sections interact with other Blazor features in the following ways: +A section interacts with other Blazor features in the following ways: * [Cascading values](xref:blazor/components/cascading-values-and-parameters) flow into section content from where the content is defined by the `SectionContent` component. -* Unhandled exceptions are handled by [error boundaries](xref:blazor/fundamentals/handle-errors#error-boundaries) defined around `SectionContent` components. -* Razor components that are configured for streaming rendering also automatically configure section content provided by one or more `SectionContent` components to use streaming rendering. +* Unhandled exceptions are handled by [error boundaries](xref:blazor/fundamentals/handle-errors#error-boundaries) defined around a `SectionContent` component. +* A Razor component configured for streaming rendering also automatically configures section content provided a `SectionContent` component to use streaming rendering. From 3477d23957132fc62287b5542c0226f482bcb8aa Mon Sep 17 00:00:00 2001 From: guardrex <1622880+guardrex@users.noreply.github.com> Date: Thu, 13 Jul 2023 08:44:41 -0400 Subject: [PATCH 3/3] Updates --- aspnetcore/blazor/components/sections.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/blazor/components/sections.md b/aspnetcore/blazor/components/sections.md index 1e6f56c1ee84..dc927eef79b0 100644 --- a/aspnetcore/blazor/components/sections.md +++ b/aspnetcore/blazor/components/sections.md @@ -85,7 +85,7 @@ A section interacts with other Blazor features in the following ways: * [Cascading values](xref:blazor/components/cascading-values-and-parameters) flow into section content from where the content is defined by the `SectionContent` component. * Unhandled exceptions are handled by [error boundaries](xref:blazor/fundamentals/handle-errors#error-boundaries) defined around a `SectionContent` component. -* A Razor component configured for streaming rendering also automatically configures section content provided a `SectionContent` component to use streaming rendering. +* A Razor component configured for streaming rendering also configures section content provided a `SectionContent` component to use streaming rendering.