4 references to Partial
Microsoft.AspNetCore.Mvc.RazorPages (1)
PageModel.cs (1)
1529return Partial(viewName, model: null);
Microsoft.AspNetCore.Mvc.RazorPages.Test (1)
PageModelTest.cs (1)
1976var result = pageModel.Partial("LoginStatus", model);
RazorPagesWebSite (2)
RenderPartial.cshtml.cs (2)
14public IActionResult OnGet() => Partial("_RenderPartial", new RenderPartialModel { Value = $"Hello from {nameof(RenderPartialModel)}" }); 16public IActionResult OnGetUsePageModelAsPartialModel() => Partial("_RenderPartialPageModel", this);