This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
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
}
}