PropertyAttributes.cs 425 B

123456789101112131415161718192021222324
  1. //
  2. // System.Data.PropertyAttributes.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies the attributes of a property.
  13. /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values
  14. /// </summary>
  15. public enum PropertyAttributes
  16. {
  17. NotSupported,
  18. Optional,
  19. Read,
  20. Required,
  21. Write
  22. }
  23. }