| 123456789101112131415161718192021 |
- // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
- //
- // System.Xml.ReadState.cs
- //
- // Author:
- // Jason Diamond ([email protected])
- //
- // (C) 2001 Jason Diamond http://injektilo.org/
- //
- namespace System.Xml
- {
- public enum ReadState
- {
- Closed,
- EndOfFile,
- Error,
- Initial,
- Interactive
- }
- }
|