Udostępnij za pośrednictwem


ViewComponentHelperExtensions.InvokeAsync Metoda

Definicja

Przeciążenia

InvokeAsync(IViewComponentHelper, String)

Wywołuje składnik widoku z określonym nameelementem .

InvokeAsync(IViewComponentHelper, Type)

Wywołuje składnik widoku typu componentType.

InvokeAsync<TComponent>(IViewComponentHelper)

Wywołuje składnik widoku typu TComponent.

InvokeAsync<TComponent>(IViewComponentHelper, Object)

Wywołuje składnik widoku typu TComponent.

InvokeAsync(IViewComponentHelper, String)

Źródło:
ViewComponentHelperExtensions.cs
Źródło:
ViewComponentHelperExtensions.cs
Źródło:
ViewComponentHelperExtensions.cs

Wywołuje składnik widoku z określonym nameelementem .

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<Microsoft::AspNetCore::Html::IHtmlContent ^> ^ InvokeAsync(Microsoft::AspNetCore::Mvc::IViewComponentHelper ^ helper, System::String ^ name);
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> InvokeAsync (this Microsoft.AspNetCore.Mvc.IViewComponentHelper helper, string name);
static member InvokeAsync : Microsoft.AspNetCore.Mvc.IViewComponentHelper * string -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
<Extension()>
Public Function InvokeAsync (helper As IViewComponentHelper, name As String) As Task(Of IHtmlContent)

Parametry

name
String

Nazwa składnika widoku.

Zwraca

Element Task , który po zakończeniu zwraca renderowany IHtmlContentelement .

Dotyczy

InvokeAsync(IViewComponentHelper, Type)

Źródło:
ViewComponentHelperExtensions.cs
Źródło:
ViewComponentHelperExtensions.cs
Źródło:
ViewComponentHelperExtensions.cs

Wywołuje składnik widoku typu componentType.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<Microsoft::AspNetCore::Html::IHtmlContent ^> ^ InvokeAsync(Microsoft::AspNetCore::Mvc::IViewComponentHelper ^ helper, Type ^ componentType);
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> InvokeAsync (this Microsoft.AspNetCore.Mvc.IViewComponentHelper helper, Type componentType);
static member InvokeAsync : Microsoft.AspNetCore.Mvc.IViewComponentHelper * Type -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
<Extension()>
Public Function InvokeAsync (helper As IViewComponentHelper, componentType As Type) As Task(Of IHtmlContent)

Parametry

componentType
Type

Składnik Typewidoku .

Zwraca

Element Task , który po zakończeniu zwraca renderowany IHtmlContentelement .

Dotyczy

InvokeAsync<TComponent>(IViewComponentHelper)

Źródło:
ViewComponentHelperExtensions.cs
Źródło:
ViewComponentHelperExtensions.cs
Źródło:
ViewComponentHelperExtensions.cs

Wywołuje składnik widoku typu TComponent.

public:
generic <typename TComponent>
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<Microsoft::AspNetCore::Html::IHtmlContent ^> ^ InvokeAsync(Microsoft::AspNetCore::Mvc::IViewComponentHelper ^ helper);
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> InvokeAsync<TComponent> (this Microsoft.AspNetCore.Mvc.IViewComponentHelper helper);
static member InvokeAsync : Microsoft.AspNetCore.Mvc.IViewComponentHelper -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
<Extension()>
Public Function InvokeAsync(Of TComponent) (helper As IViewComponentHelper) As Task(Of IHtmlContent)

Parametry typu

TComponent

Składnik Type widoku.

Parametry

Zwraca

Element Task , który po zakończeniu zwraca renderowany IHtmlContentelement .

Dotyczy

InvokeAsync<TComponent>(IViewComponentHelper, Object)

Źródło:
ViewComponentHelperExtensions.cs
Źródło:
ViewComponentHelperExtensions.cs
Źródło:
ViewComponentHelperExtensions.cs

Wywołuje składnik widoku typu TComponent.

public:
generic <typename TComponent>
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<Microsoft::AspNetCore::Html::IHtmlContent ^> ^ InvokeAsync(Microsoft::AspNetCore::Mvc::IViewComponentHelper ^ helper, System::Object ^ arguments);
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> InvokeAsync<TComponent> (this Microsoft.AspNetCore.Mvc.IViewComponentHelper helper, object arguments);
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> InvokeAsync<TComponent> (this Microsoft.AspNetCore.Mvc.IViewComponentHelper helper, object? arguments);
static member InvokeAsync : Microsoft.AspNetCore.Mvc.IViewComponentHelper * obj -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
<Extension()>
Public Function InvokeAsync(Of TComponent) (helper As IViewComponentHelper, arguments As Object) As Task(Of IHtmlContent)

Parametry typu

TComponent

Składnik Type widoku.

Parametry

arguments
Object

Argumenty, które mają być przekazywane do metody wywoływanego składnika widoku.

Zwraca

Element Task , który po zakończeniu zwraca renderowany IHtmlContentelement .

Dotyczy