Condividi tramite


RazorComponentResult Costruttori

Definizione

Overload

RazorComponentResult(Type)

Costruisce un'istanza di RazorComponentResult.

RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)

Costruisce un'istanza di RazorComponentResult.

RazorComponentResult(Type, Object)

Costruisce un'istanza di RazorComponentResult.

RazorComponentResult(Type)

Origine:
RazorComponentResult.cs

Costruisce un'istanza di RazorComponentResult.

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

Parametri

componentType
Type

Tipo del componente da eseguire per il rendering. Questa operazione deve implementare IComponent.

Si applica a

RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)

Origine:
RazorComponentResult.cs

Costruisce un'istanza di 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))

Parametri

componentType
Type

Tipo del componente da eseguire per il rendering. Questa operazione deve implementare IComponent.

parameters
IReadOnlyDictionary<String,Object>

Parametri per il componente.

Si applica a

RazorComponentResult(Type, Object)

Origine:
RazorComponentResult.cs

Costruisce un'istanza di 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)

Parametri

componentType
Type

Tipo del componente da eseguire per il rendering. Questa operazione deve implementare IComponent.

parameters
Object

Parametri per il componente.

Si applica a