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