using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Specifies the state of the reader.
// Token: 0x02000053 RID: 83
[Token(Token = "0x2000053")]
public enum ReadState
{
/// The method has not been called.
// Token: 0x040001E3 RID: 483
[Token(Token = "0x40001E3")]
Initial,
/// The method has been called. Additional methods may be called on the reader.
// Token: 0x040001E4 RID: 484
[Token(Token = "0x40001E4")]
Interactive,
/// An error occurred that prevents the read operation from continuing.
// Token: 0x040001E5 RID: 485
[Token(Token = "0x40001E5")]
Error,
/// The end of the file has been reached successfully.
// Token: 0x040001E6 RID: 486
[Token(Token = "0x40001E6")]
EndOfFile,
/// The method has been called.
// Token: 0x040001E7 RID: 487
[Token(Token = "0x40001E7")]
Closed
}
}