ValidationPropertyAttribute-Konstruktor
Initialisiert eine neue Instanz der ValidationPropertyAttribute-Klasse.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Syntax
'Declaration
Public Sub New ( _
name As String _
)
'Usage
Dim name As String
Dim instance As New ValidationPropertyAttribute(name)
public ValidationPropertyAttribute (
string name
)
public:
ValidationPropertyAttribute (
String^ name
)
public ValidationPropertyAttribute (
String name
)
public function ValidationPropertyAttribute (
name : String
)
Parameter
- name
Der Name der Validierungseigenschaft.
Beispiel
Das folgende Beispiel veranschaulicht die Verwendung der ValidationPropertyAttribute-Klasse beim Erstellen eines benutzerdefinierten Steuerelements.
<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
Plattformen
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 unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
ValidationPropertyAttribute-Klasse
ValidationPropertyAttribute-Member
System.Web.UI-Namespace