| 123456789101112131415161718192021222324252627 |
- //
- // System.Web.UI.ValidationPropertyAttribute.cs
- //
- // Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc.
- //
- using System;
- namespace System.Web.UI {
- [AttributeUsage (AttributeTargets.Class)]
- public sealed class ValidationPropertyAttribute : Attribute
- {
- string name;
- public ValidationPropertyAttribute (string name)
- {
- this.name = name;
- }
- public string Name {
- get { return name; }
- }
- }
- }
-
|