This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the severity of the validation event.</summary>
// Token: 0x02000128 RID: 296
[Token(Token = "0x2000128")]
public enum XmlSeverityType
{
/// <summary>Indicates a validation error occurred when validating the instance document. This applies to document type definitions (DTDs) and XML Schema definition language (XSD) schemas. The World Wide Web Consortium (W3C) validity constraints are considered errors. If no validation event handler has been created, errors throw an exception.</summary>
// Token: 0x04000464 RID: 1124
[Token(Token = "0x4000464")]
Error,
/// <summary>Indicates that a validation event occurred that is not an error. A warning is typically issued when there is no DTD, or XML Schema to validate a particular element or attribute against. Unlike errors, warnings do not throw an exception if there is no validation event handler.</summary>
// Token: 0x04000465 RID: 1125
[Token(Token = "0x4000465")]
Warning
}
}