IViewComponentHelper.InvokeAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
InvokeAsync(String, Object) |
Richiama un componente di visualizzazione con l'oggetto specificato |
InvokeAsync(Type, Object) |
Richiama un componente di visualizzazione di tipo |
InvokeAsync(String, Object)
- Origine:
- IViewComponentHelper.cs
Richiama un componente di visualizzazione con l'oggetto specificato name
.
public:
System::Threading::Tasks::Task<Microsoft::AspNetCore::Html::IHtmlContent ^> ^ InvokeAsync(System::String ^ name, System::Object ^ arguments);
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> InvokeAsync (string name, object arguments);
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> InvokeAsync (string name, object? arguments);
abstract member InvokeAsync : string * obj -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
Public Function InvokeAsync (name As String, arguments As Object) As Task(Of IHtmlContent)
Parametri
- name
- String
Nome del componente di visualizzazione.
- arguments
- Object
Oggetto Object con proprietà che rappresentano gli argomenti da passare al metodo componente di visualizzazione richiamato. In alternativa, un'istanza IDictionary<TKey,TValue> contenente gli argomenti di chiamata.
Restituisce
Oggetto Task che al completamento restituisce il rendering di IHtmlContent.
Si applica a
InvokeAsync(Type, Object)
- Origine:
- IViewComponentHelper.cs
Richiama un componente di visualizzazione di tipo componentType
.
public:
System::Threading::Tasks::Task<Microsoft::AspNetCore::Html::IHtmlContent ^> ^ InvokeAsync(Type ^ componentType, System::Object ^ arguments);
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> InvokeAsync (Type componentType, object arguments);
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent> InvokeAsync (Type componentType, object? arguments);
abstract member InvokeAsync : Type * obj -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
Public Function InvokeAsync (componentType As Type, arguments As Object) As Task(Of IHtmlContent)
Parametri
- arguments
- Object
Oggetto Object con proprietà che rappresentano gli argomenti da passare al metodo componente di visualizzazione richiamato. In alternativa, un'istanza IDictionary<TKey,TValue> contenente gli argomenti di chiamata.
Restituisce
Oggetto Task che al completamento restituisce il rendering di IHtmlContent.