TimersDescriptionAttribute.cs 526 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // System.Timers.TimersDescriptionAttribute
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System;
  10. using System.ComponentModel;
  11. namespace System.Timers
  12. {
  13. [AttributeUsage(AttributeTargets.All)]
  14. public class TimersDescriptionAttribute : DescriptionAttribute
  15. {
  16. public TimersDescriptionAttribute (string description)
  17. : base (description)
  18. {
  19. }
  20. public override string Description
  21. {
  22. get {
  23. return base.Description;
  24. }
  25. }
  26. }
  27. }