1 write to LayoutType
Microsoft.AspNetCore.Components (1)
LayoutAttribute.cs (1)
21
LayoutType
= layoutType ?? throw new ArgumentNullException(nameof(layoutType));
3 references to LayoutType
Microsoft.AspNetCore.Components (2)
LayoutView.cs (1)
80
=> type.GetCustomAttribute<LayoutAttribute>()?.
LayoutType
;
RouteView.cs (1)
79
.GetOrAdd(RouteData.PageType, static type => type.GetCustomAttribute<LayoutAttribute>()?.
LayoutType
)
Microsoft.AspNetCore.Components.Endpoints (1)
RazorComponentEndpointHost.cs (1)
43
var pageLayoutType = ComponentType.GetCustomAttribute<LayoutAttribute>()?.
LayoutType
;