Freigeben über


DefaultViewComponentHelper.InvokeAsync Methode

Definition

Überlädt

InvokeAsync(String, Object)

Ruft eine Ansichtskomponente mit dem angegebenen nameauf.

InvokeAsync(Type, Object)

Ruft eine Ansichtskomponente vom Typ componentTypeauf.

InvokeAsync(String, Object)

Quelle:
DefaultViewComponentHelper.cs
Quelle:
DefaultViewComponentHelper.cs
Quelle:
DefaultViewComponentHelper.cs

Ruft eine Ansichtskomponente mit dem angegebenen nameauf.

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)

Parameter

name
String

Der Name der Ansichtskomponente.

arguments
Object

Ein Object mit Eigenschaften, die Argumente darstellen, die an die aufgerufene Sichtkomponentesmethode übergeben werden sollen. Alternativ kann ein IDictionary<TKey,TValue> instance, der die Aufrufargumente enthält.

Gibt zurück

Eine Task , die bei Abschluss das gerenderte IHtmlContentzurückgibt.

Implementiert

Gilt für:

InvokeAsync(Type, Object)

Quelle:
DefaultViewComponentHelper.cs
Quelle:
DefaultViewComponentHelper.cs
Quelle:
DefaultViewComponentHelper.cs

Ruft eine Ansichtskomponente vom Typ componentTypeauf.

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)

Parameter

componentType
Type

Die Ansichtskomponente Type.

arguments
Object

Ein Object mit Eigenschaften, die Argumente darstellen, die an die aufgerufene Sichtkomponentesmethode übergeben werden sollen. Alternativ kann ein IDictionary<TKey,TValue> instance, der die Aufrufargumente enthält.

Gibt zurück

Eine Task , die bei Abschluss das gerenderte IHtmlContentzurückgibt.

Implementiert

Gilt für: