ViewComponentHelperExtensions.InvokeAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
InvokeAsync(IViewComponentHelper, String) |
Appelle un composant d’affichage avec le spécifié |
InvokeAsync(IViewComponentHelper, Type) |
Appelle un composant d’affichage de type |
InvokeAsync<TComponent>(IViewComponentHelper) |
Appelle un composant d’affichage de type |
InvokeAsync<TComponent>(IViewComponentHelper, Object) |
Appelle un composant d’affichage de type |
InvokeAsync(IViewComponentHelper, String)
Appelle un composant d’affichage avec le spécifié name
.
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)
Paramètres
- helper
- IViewComponentHelper
L’IViewComponentHelperopérateur
- name
- String
Nom du composant d’affichage.
Retours
Task qui, à la fin, retourne le rendu IHtmlContent.
S’applique à
InvokeAsync(IViewComponentHelper, Type)
Appelle un composant d’affichage de type 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)
Paramètres
- helper
- IViewComponentHelper
L’IViewComponentHelperopérateur
Retours
Task qui, à la fin, retourne le rendu IHtmlContent.
S’applique à
InvokeAsync<TComponent>(IViewComponentHelper)
Appelle un composant d’affichage de type 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)
Paramètres de type
- TComponent
Type du composant d’affichage.
Paramètres
- helper
- IViewComponentHelper
L’IViewComponentHelperopérateur
Retours
Task qui, à la fin, retourne le rendu IHtmlContent.
S’applique à
InvokeAsync<TComponent>(IViewComponentHelper, Object)
Appelle un composant d’affichage de type 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)
Paramètres de type
- TComponent
Type du composant d’affichage.
Paramètres
- helper
- IViewComponentHelper
L’IViewComponentHelperopérateur
- arguments
- Object
Arguments à passer à la méthode du composant d’affichage appelé.
Retours
Task qui, à la fin, retourne le rendu IHtmlContent.