Share via


RootComponentMapping コンストラクター

定義

オーバーロード

RootComponentMapping(Type, String)

指定componentTypeした と を使用して、 のRootComponentMapping新しいインスタンスをselector作成します。

RootComponentMapping(Type, String, ParameterView)

指定componentTypeした と を使用して、 のRootComponentMapping新しいインスタンスをselector作成します。

RootComponentMapping(Type, String)

ソース:
RootComponentMapping.cs
ソース:
RootComponentMapping.cs
ソース:
RootComponentMapping.cs
ソース:
RootComponentMapping.cs
ソース:
RootComponentMapping.cs

指定componentTypeした と を使用して、 のRootComponentMapping新しいインスタンスをselector作成します。

public:
 RootComponentMapping(Type ^ componentType, System::String ^ selector);
public RootComponentMapping (Type componentType, string selector);
new Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping : Type * string -> Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping
Public Sub New (componentType As Type, selector As String)

パラメーター

componentType
Type

コンポーネントの種類。 を実装 IComponentする必要があります。

selector
String

コンポーネントの DOM 要素セレクターまたはコンポーネント登録 ID。

適用対象

RootComponentMapping(Type, String, ParameterView)

ソース:
RootComponentMapping.cs
ソース:
RootComponentMapping.cs
ソース:
RootComponentMapping.cs
ソース:
RootComponentMapping.cs

指定componentTypeした と を使用して、 のRootComponentMapping新しいインスタンスをselector作成します。

public:
 RootComponentMapping(Type ^ componentType, System::String ^ selector, Microsoft::AspNetCore::Components::ParameterView parameters);
public RootComponentMapping (Type componentType, string selector, Microsoft.AspNetCore.Components.ParameterView parameters);
new Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping : Type * string * Microsoft.AspNetCore.Components.ParameterView -> Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping
Public Sub New (componentType As Type, selector As String, parameters As ParameterView)

パラメーター

componentType
Type

コンポーネントの種類。 を実装 IComponentする必要があります。

selector
String

コンポーネントの DOM 要素セレクターまたは登録 ID。

parameters
ParameterView

コンポーネントに渡すパラメーター。

適用対象