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