Compartir a través de


DefaultViewComponentHelper.InvokeAsync Método

Definición

Sobrecargas

InvokeAsync(String, Object)

Invoca un componente de vista con el especificado name.

InvokeAsync(Type, Object)

Invoca un componente de vista de tipo componentType.

InvokeAsync(String, Object)

Source:
DefaultViewComponentHelper.cs
Source:
DefaultViewComponentHelper.cs
Source:
DefaultViewComponentHelper.cs

Invoca un componente de vista con el especificado name.

public:
 virtual 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>
override this.InvokeAsync : string * obj -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
Public Function InvokeAsync (name As String, arguments As Object) As Task(Of IHtmlContent)

Parámetros

name
String

Nombre del componente de vista.

arguments
Object

con Object propiedades que representan argumentos que se van a pasar al método de componente de vista invocado. Como alternativa, una IDictionary<TKey,TValue> instancia que contiene los argumentos de invocación.

Devoluciones

que Task al finalizar devuelve el objeto representado IHtmlContent.

Implementaciones

Se aplica a

InvokeAsync(Type, Object)

Source:
DefaultViewComponentHelper.cs
Source:
DefaultViewComponentHelper.cs
Source:
DefaultViewComponentHelper.cs

Invoca un componente de vista de tipo componentType.

public:
 virtual 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>
override this.InvokeAsync : Type * obj -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Html.IHtmlContent>
Public Function InvokeAsync (componentType As Type, arguments As Object) As Task(Of IHtmlContent)

Parámetros

componentType
Type

Componente de vista Type.

arguments
Object

con Object propiedades que representan argumentos que se van a pasar al método de componente de vista invocado. Como alternativa, una IDictionary<TKey,TValue> instancia que contiene los argumentos de invocación.

Devoluciones

que Task al finalizar devuelve el objeto representado IHtmlContent.

Implementaciones

Se aplica a