ViewComponentHelperExtensions.InvokeAsync Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
InvokeAsync(IViewComponentHelper, String) |
Wywołuje składnik widoku z określonym |
InvokeAsync(IViewComponentHelper, Type) |
Wywołuje składnik widoku typu |
InvokeAsync<TComponent>(IViewComponentHelper) |
Wywołuje składnik widoku typu |
InvokeAsync<TComponent>(IViewComponentHelper, Object) |
Wywołuje składnik widoku typu |
InvokeAsync(IViewComponentHelper, String)
Wywołuje składnik widoku z określonym name
elementem .
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
- helper
- IViewComponentHelper
Element IViewComponentHelper.
- name
- String
Nazwa składnika widoku.
Zwraca
Element Task , który po zakończeniu zwraca renderowany IHtmlContentelement .
Dotyczy
InvokeAsync(IViewComponentHelper, Type)
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
- helper
- IViewComponentHelper
Element IViewComponentHelper.
Zwraca
Element Task , który po zakończeniu zwraca renderowany IHtmlContentelement .
Dotyczy
InvokeAsync<TComponent>(IViewComponentHelper)
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
- helper
- IViewComponentHelper
Element IViewComponentHelper.
Zwraca
Element Task , który po zakończeniu zwraca renderowany IHtmlContentelement .
Dotyczy
InvokeAsync<TComponent>(IViewComponentHelper, Object)
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
- helper
- IViewComponentHelper
Element IViewComponentHelper.
- 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 .