Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions aspnetcore/blazor/components/sections.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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 configures section content provided a `SectionContent` component to use streaming rendering.

<!-- UPDATE FOR 8.0 Add "streaming rendering" cross-link -->