ValidationPropertyAttribute.cs 419 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Web.UI.ValidationPropertyAttribute.cs
  3. //
  4. // Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. //
  8. using System;
  9. namespace System.Web.UI {
  10. [AttributeUsage (AttributeTargets.Class)]
  11. public sealed class ValidationPropertyAttribute : Attribute
  12. {
  13. string name;
  14. public ValidationPropertyAttribute (string name)
  15. {
  16. this.name = name;
  17. }
  18. public string Name {
  19. get { return name; }
  20. }
  21. }
  22. }