ValidationPropertyAttribute(String) Constructor

Definition

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)

Parameters

name
String

The name of the validation property.

Examples

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

Applies to