ValidationPropertyAttribute(String) Construtor
Definição
Inicializa uma nova instância da classe ValidationPropertyAttribute.Initializes a new instance of the ValidationPropertyAttribute class.
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)
Parâmetros
- name
- String
O nome da propriedade de validação.The name of the validation property.
Exemplos
O exemplo de código a seguir demonstra como usar a ValidationPropertyAttribute classe ao criar um controle personalizado.The following code example demonstrates using the ValidationPropertyAttribute class when creating a custom control.
[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