3 instantiations of PageResult
Microsoft.AspNetCore.Mvc.RazorPages (3)
Infrastructure\PageActionInvoker.cs (1)
289
_result = new
PageResult
();
PageBase.cs (1)
481
public virtual PageResult Page() => new
PageResult
();
PageModel.cs (1)
784
public virtual PageResult Page() => new
PageResult
();
12 references to PageResult
Microsoft.AspNetCore.Mvc.RazorPages (12)
Infrastructure\PageActionInvoker.cs (2)
107
if (result is
PageResult
pageResult)
295
if (_result is
PageResult
pageResult)
Infrastructure\PageResultExecutor.cs (1)
51
public virtual Task ExecuteAsync(PageContext pageContext,
PageResult
result)
PageBase.cs (4)
474
/// Creates a <see cref="
PageResult
"/> object that renders this page as a view to the response.
476
/// <returns>The created <see cref="
PageResult
"/> object for the response.</returns>
478
/// Returning a <see cref="
PageResult
"/> from a page handler method is equivalent to returning void.
481
public virtual
PageResult
Page() => new PageResult();
PageModel.cs (4)
89
/// Gets or sets <see cref="ITempDataDictionary"/> used by <see cref="
PageResult
"/>.
781
/// Creates a <see cref="
PageResult
"/> object that renders the page.
783
/// <returns>The <see cref="
PageResult
"/>.</returns>
784
public virtual
PageResult
Page() => new PageResult();
PageResult.cs (1)
57
nameof(
PageResult
)));