PageResult.ExecuteResultAsync(ActionContext) Method

Definition

Requests the service of Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageResultExecutor.ExecuteAsync(PageContext,PageResult) to process itself in the given context.

public:
 override System::Threading::Tasks::Task ^ ExecuteResultAsync(Microsoft::AspNetCore::Mvc::ActionContext ^ context);
public override System.Threading.Tasks.Task ExecuteResultAsync (Microsoft.AspNetCore.Mvc.ActionContext context);
override this.ExecuteResultAsync : Microsoft.AspNetCore.Mvc.ActionContext -> System.Threading.Tasks.Task
Public Overrides Function ExecuteResultAsync (context As ActionContext) As Task

Parameters

context
ActionContext

A PageContext associated with the current request for a Razor page.

Returns

A Task which will complete when page execution is completed.

Exceptions

The parameter context was not a PageContext

Applies to