MappingType.cs 305 B

12345678910111213141516171819202122
  1. //
  2. // System.Data.MappingType.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies how a DataColumn is mapped.
  13. /// </summary>
  14. public enum MappingType
  15. {
  16. Attribute,
  17. Element,
  18. Hidden,
  19. SimpleContent
  20. }
  21. }