WriteState.cs 771 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // WriteState.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:40 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. /// </summary>
  14. public enum WriteState {
  15. /// <summary>
  16. /// </summary>
  17. Start = 0,
  18. /// <summary>
  19. /// </summary>
  20. Prolog = 1,
  21. /// <summary>
  22. /// </summary>
  23. Element = 2,
  24. /// <summary>
  25. /// </summary>
  26. Attribute = 3,
  27. /// <summary>
  28. /// </summary>
  29. Content = 4,
  30. /// <summary>
  31. /// </summary>
  32. Closed = 5,
  33. } // WriteState
  34. } // System.Xml