XmlWriteMode.cs 358 B

123456789101112131415161718192021
  1. //
  2. // System.Data.XmlWriteMode.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Use the members of this enumeration when setting the WriteMode parameter of the WriteXml method.
  13. /// </summary>
  14. public enum XmlWriteMode
  15. {
  16. DiffGram,
  17. IgnoreSchema,
  18. WriteSchema
  19. }
  20. }