次の方法で共有


ControlAttribute コンストラクター

定義

ControlAttribute クラスの新しいインスタンスを初期化します。

オーバーロード

ControlAttribute()

ControlAttribute クラスの新しいインスタンスを初期化します。

ControlAttribute(String)

指定したコントロール ID を使用して ControlAttribute クラスの新しいインスタンスを初期化します。

ControlAttribute(String, String)

指定したコントロール ID とプロパティ名を使用して、ControlAttribute クラスの新しいインスタンスを初期化します。

注釈

Web フォームでのモデルバインドの使用に関するチュートリアルシリーズについては、「 モデルバインドと Web フォーム」を参照してください。

ControlAttribute()

ControlAttribute クラスの新しいインスタンスを初期化します。

public:
 ControlAttribute();
public ControlAttribute ();
Public Sub New ()

注釈

Web フォームでのモデルバインドの使用に関するチュートリアルシリーズについては、「 モデルバインドと Web フォーム」を参照してください。

適用対象

ControlAttribute(String)

指定したコントロール ID を使用して ControlAttribute クラスの新しいインスタンスを初期化します。

public:
 ControlAttribute(System::String ^ controlID);
public ControlAttribute (string controlID);
new System.Web.ModelBinding.ControlAttribute : string -> System.Web.ModelBinding.ControlAttribute
Public Sub New (controlID As String)

パラメーター

controlID
String

コントロール ID。

注釈

Web フォームでのモデルバインドの使用に関するチュートリアルシリーズについては、「 モデルバインドと Web フォーム」を参照してください。

適用対象

ControlAttribute(String, String)

指定したコントロール ID とプロパティ名を使用して、ControlAttribute クラスの新しいインスタンスを初期化します。

public:
 ControlAttribute(System::String ^ controlID, System::String ^ propertyName);
public ControlAttribute (string controlID, string propertyName);
new System.Web.ModelBinding.ControlAttribute : string * string -> System.Web.ModelBinding.ControlAttribute
Public Sub New (controlID As String, propertyName As String)

パラメーター

controlID
String

コントロール ID。

propertyName
String

プロパティ名。

注釈

Web フォームでのモデルバインドの使用に関するチュートリアルシリーズについては、「 モデルバインドと Web フォーム」を参照してください。

適用対象