| File: Head\HeadContent.cs | Web Access |
| Project: src\aspnetcore\src\Components\Web\src\Microsoft.AspNetCore.Components.Web.csproj (Microsoft.AspNetCore.Components.Web) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.AspNetCore.Components.Rendering; using Microsoft.AspNetCore.Components.Sections; namespace Microsoft.AspNetCore.Components.Web; /// <summary> /// Provides content to <see cref="HeadOutlet"/> components. /// </summary> public sealed class HeadContent : ComponentBase { /// <summary> /// Gets or sets the content to be rendered in <see cref="HeadOutlet"/> instances. /// </summary> [Parameter] public RenderFragment? ChildContent { get; set; } /// <inheritdoc/> protected override void BuildRenderTree(RenderTreeBuilder builder) { builder.OpenComponent<SectionContent>(0); builder.AddComponentParameter(1, nameof(SectionContent.SectionId), HeadOutlet.HeadSectionId); builder.AddComponentParameter(2, nameof(SectionContent.ChildContent), ChildContent); builder.CloseComponent(); } }