ValidationPropertyAttribute(String) Constructor  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.ValidationPropertyAttributePublic 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