Sdílet prostřednictvím


PartialViewResultExecutor.ExecuteAsync Metoda

Definice

Přetížení

ExecuteAsync(ActionContext, PartialViewResult)

Asynchronně provede výsledek akce úpravou .HttpResponse

ExecuteAsync(ActionContext, IView, PartialViewResult)

Spustí asynchronně IView .

ExecuteAsync(ActionContext, PartialViewResult)

Zdroj:
PartialViewResultExecutor.cs
Zdroj:
PartialViewResultExecutor.cs
Zdroj:
PartialViewResultExecutor.cs

Asynchronně provede výsledek akce úpravou .HttpResponse

public:
 virtual System::Threading::Tasks::Task ^ ExecuteAsync(Microsoft::AspNetCore::Mvc::ActionContext ^ context, Microsoft::AspNetCore::Mvc::PartialViewResult ^ result);
public virtual System.Threading.Tasks.Task ExecuteAsync (Microsoft.AspNetCore.Mvc.ActionContext context, Microsoft.AspNetCore.Mvc.PartialViewResult result);
override this.ExecuteAsync : Microsoft.AspNetCore.Mvc.ActionContext * Microsoft.AspNetCore.Mvc.PartialViewResult -> System.Threading.Tasks.Task
Public Overridable Function ExecuteAsync (context As ActionContext, result As PartialViewResult) As Task

Parametry

context
ActionContext

Přidružený ActionContext k aktuálnímu požadavku." />

result
PartialViewResult

Výsledek akce, která se má provést.

Návraty

A Task , který představuje asynchronní operaci.

Implementuje

Platí pro

ExecuteAsync(ActionContext, IView, PartialViewResult)

Zdroj:
PartialViewResultExecutor.cs
Zdroj:
PartialViewResultExecutor.cs
Zdroj:
PartialViewResultExecutor.cs

Spustí asynchronně IView .

public:
 virtual System::Threading::Tasks::Task ^ ExecuteAsync(Microsoft::AspNetCore::Mvc::ActionContext ^ actionContext, Microsoft::AspNetCore::Mvc::ViewEngines::IView ^ view, Microsoft::AspNetCore::Mvc::PartialViewResult ^ viewResult);
public virtual System.Threading.Tasks.Task ExecuteAsync (Microsoft.AspNetCore.Mvc.ActionContext actionContext, Microsoft.AspNetCore.Mvc.ViewEngines.IView view, Microsoft.AspNetCore.Mvc.PartialViewResult viewResult);
override this.ExecuteAsync : Microsoft.AspNetCore.Mvc.ActionContext * Microsoft.AspNetCore.Mvc.ViewEngines.IView * Microsoft.AspNetCore.Mvc.PartialViewResult -> System.Threading.Tasks.Task
Public Overridable Function ExecuteAsync (actionContext As ActionContext, view As IView, viewResult As PartialViewResult) As Task

Parametry

actionContext
ActionContext

Přidružený ActionContext k aktuálnímu požadavku.

view
IView

Hodnota IView

Návraty

A Task , která se dokončí po dokončení provádění zobrazení.

Platí pro