3 instantiations of PageResult
Microsoft.AspNetCore.Mvc.RazorPages (3)
Infrastructure\PageActionInvoker.cs (1)
289_result = new PageResult();
PageBase.cs (1)
481public virtual PageResult Page() => new PageResult();
PageModel.cs (1)
784public virtual PageResult Page() => new PageResult();
12 references to PageResult
Microsoft.AspNetCore.Mvc.RazorPages (12)
Infrastructure\PageActionInvoker.cs (2)
107if (result is PageResult pageResult) 295if (_result is PageResult pageResult)
Infrastructure\PageResultExecutor.cs (1)
51public 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. 481public 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> 784public virtual PageResult Page() => new PageResult();
PageResult.cs (1)
57nameof(PageResult)));