2 implementations of Layout
Microsoft.AspNetCore.Mvc.Razor (1)
RazorPageBase.cs (1)
49public string? Layout { get; set; }
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\RazorPageAdapter.cs (1)
60public string? Layout
2 writes to Layout
Microsoft.AspNetCore.Mvc.Razor (2)
RazorView.cs (2)
172viewStart.Layout = layout; 190RazorPage.Layout = layout;
3 references to Layout
Microsoft.AspNetCore.Mvc.Razor (3)
RazorView.cs (3)
179layout = _viewEngine.GetAbsolutePath(viewStart.Path, viewStart.Layout); 206while (!string.IsNullOrEmpty(previousPage.Layout)) 219var layoutPage = GetLayoutPage(context, previousPage.Path, previousPage.Layout);