Implemented interface member:
property
SectionWriters
Microsoft.AspNetCore.Mvc.Razor.IRazorPage.SectionWriters
6 references to SectionWriters
Microsoft.AspNetCore.Mvc.Razor (4)
RazorPage.cs (2)
60
if (
SectionWriters
.ContainsKey(name))
64
SectionWriters
[name] = section;
RazorPageBase.cs (2)
385
if (
SectionWriters
.ContainsKey(name))
389
SectionWriters
[name] = section;
Microsoft.AspNetCore.Mvc.Razor.Test (1)
RazorPageTest.cs (1)
920
var renderAsyncDelegate = page.
SectionWriters
["test-section"];
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\RazorPageAdapter.cs (1)
74
public IDictionary<string, RenderAsyncDelegate> SectionWriters => _page.
SectionWriters
;