RazorComponentResult Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
RazorComponentResult(Type) |
Construit un instance de RazorComponentResult. |
RazorComponentResult(Type, IReadOnlyDictionary<String,Object>) |
Construit un instance de RazorComponentResult. |
RazorComponentResult(Type, Object) |
Construit un instance de RazorComponentResult. |
RazorComponentResult(Type)
- Source:
- RazorComponentResult.cs
Construit un instance de RazorComponentResult.
public RazorComponentResult (Type componentType);
new Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult : Type -> Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult
Public Sub New (componentType As Type)
Paramètres
- componentType
- Type
Type du composant à restituer. Cette opération doit implémenter IComponent.
S’applique à
RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)
- Source:
- RazorComponentResult.cs
Construit un instance 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))
Paramètres
- componentType
- Type
Type du composant à restituer. Cette opération doit implémenter IComponent.
- parameters
- IReadOnlyDictionary<String,Object>
Paramètres du composant.
S’applique à
RazorComponentResult(Type, Object)
- Source:
- RazorComponentResult.cs
Construit un instance 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)
Paramètres
- componentType
- Type
Type du composant à restituer. Cette opération doit implémenter IComponent.
- parameters
- Object
Paramètres du composant.