OdbcCategoryAttribute.cs 695 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.Data.Odbc/OdbcCategoryAttribute.cs
  3. //
  4. // Author:
  5. // Umadevi S ([email protected])
  6. //
  7. // Copyright (C) Novell Inc, 2004
  8. //
  9. using System;
  10. using System.ComponentModel;
  11. namespace System.Data {
  12. [AttributeUsage (AttributeTargets.All)]
  13. internal sealed class OdbcCategoryAttribute : CategoryAttribute
  14. {
  15. #region Fields
  16. string category;
  17. #endregion // Fields
  18. #region Constructors
  19. public OdbcCategoryAttribute (string category)
  20. {
  21. this.category = category;
  22. }
  23. #endregion // Constructors
  24. #region Methods
  25. [MonoTODO]
  26. protected override string GetLocalizedString (string value)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. #endregion // Methods
  31. }
  32. }