ValidationPropertyAttribute.Name 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 ASP.NET 服务器控件的验证属性的名称。
public:
property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As 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