using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Specifies the state of the reader.
// Token: 0x0200001C RID: 28
[Token(Token = "0x200001C")]
public enum ReadState
{
/// The method has not been called.
// Token: 0x0400002F RID: 47
[Token(Token = "0x400002F")]
Initial,
/// The method has been called. Additional methods may be called on the reader.
// Token: 0x04000030 RID: 48
[Token(Token = "0x4000030")]
Interactive,
/// An error occurred that prevents the read operation from continuing.
// Token: 0x04000031 RID: 49
[Token(Token = "0x4000031")]
Error,
/// The end of the file has been reached successfully.
// Token: 0x04000032 RID: 50
[Token(Token = "0x4000032")]
EndOfFile,
/// The method has been called.
// Token: 0x04000033 RID: 51
[Token(Token = "0x4000033")]
Closed
}
}