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
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the validity of an XML item validated by the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> class.</summary>
// Token: 0x02000266 RID: 614
[Token(Token = "0x2000266")]
public enum XmlSchemaValidity
{
/// <summary>The validity of the XML item is not known.</summary>
// Token: 0x04000CEE RID: 3310
[Token(Token = "0x4000CEE")]
NotKnown,
/// <summary>The XML item is valid.</summary>
// Token: 0x04000CEF RID: 3311
[Token(Token = "0x4000CEF")]
Valid,
/// <summary>The XML item is invalid.</summary>
// Token: 0x04000CF0 RID: 3312
[Token(Token = "0x4000CF0")]
Invalid
}
}