ReadState.cs 346 B

123456789101112131415161718192021
  1. // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
  2. //
  3. // System.Xml.ReadState.cs
  4. //
  5. // Author:
  6. // Jason Diamond ([email protected])
  7. //
  8. // (C) 2001 Jason Diamond http://injektilo.org/
  9. //
  10. namespace System.Xml
  11. {
  12. public enum ReadState
  13. {
  14. Closed,
  15. EndOfFile,
  16. Error,
  17. Initial,
  18. Interactive
  19. }
  20. }