XmlSpace.cs 764 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // XmlSpace.cs
  2. //
  3. // This code was automatically generated from
  4. // ECMA CLI XML Library Specification.
  5. // Generator: libgen.xsl [1.0; (C) Sergey Chaban ([email protected])]
  6. // Created: Wed, 5 Sep 2001 06:31:52 UTC
  7. // Source file: AllTypes.xml
  8. // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
  9. //
  10. // (C) 2001 Ximian, Inc. http://www.ximian.com
  11. namespace System.Xml {
  12. /// <summary>
  13. /// Specifies the current xml:space scope
  14. /// </summary>
  15. public enum XmlSpace {
  16. /// <summary>
  17. /// No xml:space scope.
  18. /// </summary>
  19. None = 0,
  20. /// <summary>
  21. /// the xml:space scope = "default"
  22. /// </summary>
  23. Default = 1,
  24. /// <summary>
  25. /// the xml:space scope = "preserve"
  26. /// </summary>
  27. Preserve = 2,
  28. } // XmlSpace
  29. } // System.Xml