ActionResult.ExecuteResultAsync(ActionContext) Methode

Definition

Führt den Ergebnisvorgang der Aktionsmethode asynchron aus. Diese Methode wird von MVC aufgerufen, um das Ergebnis einer Aktionsmethode zu verarbeiten. Die Standardimplementierung dieser Methode ruft die ExecuteResult(ActionContext) -Methode auf und gibt eine abgeschlossene Aufgabe zurück.

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

Parameter

context
ActionContext

Der Kontext, in dem das Ergebnis ausgeführt wird. Die Kontextinformationen enthalten Informationen zur ausgeführten Aktion und Anforderungsinformationen.

Gibt zurück

Eine Aufgabe, die den asynchronen Ausführungsvorgang darstellt.

Implementiert

Gilt für: