ValidationPropertyAttribute(String) 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 ValidationPropertyAttribute 類別的新執行個體。
public:
ValidationPropertyAttribute(System::String ^ name);
public ValidationPropertyAttribute (string name);
new System.Web.UI.ValidationPropertyAttribute : string -> System.Web.UI.ValidationPropertyAttribute
Public Sub New (name As String)
參數
- name
- String
驗證屬性的名稱。
範例
下列程式碼範例示範如何在建立自訂控制項時使用 ValidationPropertyAttribute 類別。
[ValidationPropertyAttribute("Message")]
public class MessageControl : Label
{
private int _message = 0;
public int Message
{
get
{
return _message;
}
set
{
_message = value;
}
}
}
<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