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: 0x0200001C RID: 28
|
|
[Token(Token = "0x200001C")]
|
|
public enum ReadState
|
|
{
|
|
/// <summary>The <see langword="Read" /> method has not been called.</summary>
|
|
// Token: 0x0400002F RID: 47
|
|
[Token(Token = "0x400002F")]
|
|
Initial,
|
|
/// <summary>The <see langword="Read" /> method has been called. Additional methods may be called on the reader.</summary>
|
|
// Token: 0x04000030 RID: 48
|
|
[Token(Token = "0x4000030")]
|
|
Interactive,
|
|
/// <summary>An error occurred that prevents the read operation from continuing.</summary>
|
|
// Token: 0x04000031 RID: 49
|
|
[Token(Token = "0x4000031")]
|
|
Error,
|
|
/// <summary>The end of the file has been reached successfully.</summary>
|
|
// Token: 0x04000032 RID: 50
|
|
[Token(Token = "0x4000032")]
|
|
EndOfFile,
|
|
/// <summary>The <see cref="M:System.Xml.XmlReader.Close" /> method has been called.</summary>
|
|
// Token: 0x04000033 RID: 51
|
|
[Token(Token = "0x4000033")]
|
|
Closed
|
|
}
|
|
}
|