4 references to LayoutAttribute
Microsoft.AspNetCore.Components (3)
LayoutAttribute.cs (1)
16/// Constructs an instance of <see cref="LayoutAttribute"/>.
LayoutView.cs (1)
80=> type.GetCustomAttribute<LayoutAttribute>()?.LayoutType;
RouteView.cs (1)
77.GetOrAdd(RouteData.PageType, static type => type.GetCustomAttribute<LayoutAttribute>()?.LayoutType)
Microsoft.AspNetCore.Components.Endpoints (1)
RazorComponentEndpointHost.cs (1)
43var pageLayoutType = ComponentType.GetCustomAttribute<LayoutAttribute>()?.LayoutType;