Freigeben über


RazorComponentResult Konstruktoren

Definition

Überlädt

RazorComponentResult(Type)

Erstellt eine instance von RazorComponentResult.

RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)

Erstellt eine instance von RazorComponentResult.

RazorComponentResult(Type, Object)

Erstellt eine instance von RazorComponentResult.

RazorComponentResult(Type)

Quelle:
RazorComponentResult.cs

Erstellt eine instance von RazorComponentResult.

public RazorComponentResult (Type componentType);
new Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult : Type -> Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult
Public Sub New (componentType As Type)

Parameter

componentType
Type

Der Typ der zu rendernden Komponente. Dadurch muss implementiert IComponentwerden.

Gilt für:

RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)

Quelle:
RazorComponentResult.cs

Erstellt eine instance von RazorComponentResult.

public RazorComponentResult (Type componentType, System.Collections.Generic.IReadOnlyDictionary<string,object?> parameters);
new Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult : Type * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult
Public Sub New (componentType As Type, parameters As IReadOnlyDictionary(Of String, Object))

Parameter

componentType
Type

Der Typ der zu rendernden Komponente. Dadurch muss implementiert IComponentwerden.

parameters
IReadOnlyDictionary<String,Object>

Parameter für die Komponente.

Gilt für:

RazorComponentResult(Type, Object)

Quelle:
RazorComponentResult.cs

Erstellt eine instance von RazorComponentResult.

public RazorComponentResult (Type componentType, object parameters);
new Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult : Type * obj -> Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult
Public Sub New (componentType As Type, parameters As Object)

Parameter

componentType
Type

Der Typ der zu rendernden Komponente. Dadurch muss implementiert IComponentwerden.

parameters
Object

Parameter für die Komponente.

Gilt für: