Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/Schema/XmlSchemaValidationFlags.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

38 lines
1.6 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Specifies schema validation options used by the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> and <see cref="T:System.Xml.XmlReader" /> classes.</summary>
// Token: 0x02000262 RID: 610
[Token(Token = "0x2000262")]
[Flags]
public enum XmlSchemaValidationFlags
{
/// <summary>Do not process identity constraints, inline schemas, schema location hints, or report schema validation warnings.</summary>
// Token: 0x04000CA8 RID: 3240
[Token(Token = "0x4000CA8")]
None = 0,
/// <summary>Process inline schemas encountered during validation.</summary>
// Token: 0x04000CA9 RID: 3241
[Token(Token = "0x4000CA9")]
ProcessInlineSchema = 1,
/// <summary>Process schema location hints (xsi:schemaLocation, xsi:noNamespaceSchemaLocation) encountered during validation.</summary>
// Token: 0x04000CAA RID: 3242
[Token(Token = "0x4000CAA")]
ProcessSchemaLocation = 2,
/// <summary>Report schema validation warnings encountered during validation.</summary>
// Token: 0x04000CAB RID: 3243
[Token(Token = "0x4000CAB")]
ReportValidationWarnings = 4,
/// <summary>Process identity constraints (xs:ID, xs:IDREF, xs:key, xs:keyref, xs:unique) encountered during validation.</summary>
// Token: 0x04000CAC RID: 3244
[Token(Token = "0x4000CAC")]
ProcessIdentityConstraints = 8,
/// <summary>Allow xml:* attributes even if they are not defined in the schema. The attributes will be validated based on their data type.</summary>
// Token: 0x04000CAD RID: 3245
[Token(Token = "0x4000CAD")]
AllowXmlAttributes = 16
}
}