Compartir a través de


RazorComponentResult Constructores

Definición

Sobrecargas

RazorComponentResult(Type)

Construye una instancia de RazorComponentResult.

RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)

Construye una instancia de RazorComponentResult.

RazorComponentResult(Type, Object)

Construye una instancia de RazorComponentResult.

RazorComponentResult(Type)

Source:
RazorComponentResult.cs

Construye una instancia de RazorComponentResult.

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

Parámetros

componentType
Type

Tipo del componente que se va a representar. Esto debe implementar IComponent.

Se aplica a

RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)

Source:
RazorComponentResult.cs

Construye una instancia de 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))

Parámetros

componentType
Type

Tipo del componente que se va a representar. Esto debe implementar IComponent.

parameters
IReadOnlyDictionary<String,Object>

Parámetros para el componente.

Se aplica a

RazorComponentResult(Type, Object)

Source:
RazorComponentResult.cs

Construye una instancia de 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)

Parámetros

componentType
Type

Tipo del componente que se va a representar. Esto debe implementar IComponent.

parameters
Object

Parámetros para el componente.

Se aplica a