ValidationPropertyAttribute.Name プロパティ
アセンブリ: System.Web (system.web.dll 内)
構文検証プロパティの名前。
使用例カスタム コントロールの作成時に ValidationPropertyAttribute クラスを使用するコード例を次に示します。
<ValidationPropertyAttribute("Message")> Public Class MessageControl Inherits Label Private _message As Integer = 0 Public Property Message() As Integer Get Return _message End Get Set(ByVal Value As Integer) _message = Value End Set End Property End Class
[ValidationPropertyAttribute("Message")]
public class MessageControl : Label
{
private int _message = 0;
public int Message
{
get
{
return _message;
}
set
{
_message = value;
}
}
}
/** @attribute ValidationPropertyAttribute("Message") */ public class MessageControl extends Label { private int _message = 0; /** @property */ public int get_Message() { return _message; } //get_Message /** @property */ public void set_Message(int value) { _message = value; } //set_Message } //MessageControl
プラットフォームWindows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
バージョン情報
参照Weblioに収録されているすべての辞書からValidationPropertyAttribute.Name プロパティを検索する場合は、下記のリンクをクリックしてください。
全ての辞書からValidationPropertyAttribute.Name プロパティ
を検索
- ValidationPropertyAttribute.Name プロパティのページへのリンク