1 write to SectionId
Microsoft.AspNetCore.Components (1)
Sections\SectionContent.cs (1)
98SectionId = param.Value;
10 references to SectionId
Microsoft.AspNetCore.Components (7)
Sections\SectionContent.cs (7)
7/// Provides content to <see cref="SectionOutlet"/> components with matching <see cref="SectionId"/>s. 54if (SectionName is not null && SectionId is not null) 56throw new InvalidOperationException($"{nameof(SectionContent)} requires that '{nameof(SectionName)}' and '{nameof(SectionId)}' cannot both have non-null values."); 62else if (SectionId is not null) 64identifier = SectionId; 68throw new InvalidOperationException($"{nameof(SectionContent)} requires a non-null value either for '{nameof(SectionName)}' or '{nameof(SectionId)}'."); 97case nameof(SectionContent.SectionId):
Microsoft.AspNetCore.Components.Web (3)
Head\HeadContent.cs (1)
24builder.AddComponentParameter(1, nameof(SectionContent.SectionId), HeadOutlet.HeadSectionId);
Head\HeadOutlet.cs (1)
48builder.AddComponentParameter(3, nameof(SectionContent.SectionId), TitleSectionId);
Head\PageTitle.cs (1)
24builder.AddComponentParameter(1, nameof(SectionContent.SectionId), HeadOutlet.TitleSectionId);