Sdílet prostřednictvím


RazorComponentResult Konstruktory

Definice

Přetížení

RazorComponentResult(Type)

Vytvoří instanci .RazorComponentResult

RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)

Vytvoří instanci .RazorComponentResult

RazorComponentResult(Type, Object)

Vytvoří instanci .RazorComponentResult

RazorComponentResult(Type)

Zdroj:
RazorComponentResult.cs

Vytvoří instanci .RazorComponentResult

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

Parametry

componentType
Type

Typ komponenty, která se má vykreslit. To musí implementovat IComponent.

Platí pro

RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)

Zdroj:
RazorComponentResult.cs

Vytvoří instanci .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))

Parametry

componentType
Type

Typ komponenty, která se má vykreslit. To musí implementovat IComponent.

parameters
IReadOnlyDictionary<String,Object>

Parametry pro komponentu

Platí pro

RazorComponentResult(Type, Object)

Zdroj:
RazorComponentResult.cs

Vytvoří instanci .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)

Parametry

componentType
Type

Typ komponenty, která se má vykreslit. To musí implementovat IComponent.

parameters
Object

Parametry pro komponentu

Platí pro