Compartir a través de


RootComponent(String, Type, IDictionary<String,Object>) Constructor

Definición

Construye una instancia de RootComponent.

public:
 RootComponent(System::String ^ selector, Type ^ componentType, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ parameters);
public RootComponent (string selector, Type componentType, System.Collections.Generic.IDictionary<string,object?>? parameters);
new Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent : string * Type * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent
Public Sub New (selector As String, componentType As Type, parameters As IDictionary(Of String, Object))

Parámetros

selector
String

Cadena del selector css que especifica dónde se debe colocar el componente en el documento. Debe ser único entre los componentes raíz dentro de BlazorWebView.

componentType
Type

Tipo del componente raíz. Este tipo debe implementar IComponent.

parameters
IDictionary<String,Object>

Diccionario opcional de parámetros que se van a pasar al componente raíz.

Se aplica a