Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

34 lines
1.1 KiB
C#

using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Provides information about the validation mode of <see langword="any" /> and <see langword="anyAttribute" /> element replacements.</summary>
// Token: 0x02000221 RID: 545
[Token(Token = "0x2000221")]
public enum XmlSchemaContentProcessing
{
/// <summary>Document items are not validated.</summary>
// Token: 0x04000BDD RID: 3037
[Token(Token = "0x4000BDD")]
[XmlIgnore]
None,
/// <summary>Document items must consist of well-formed XML and are not validated by the schema.</summary>
// Token: 0x04000BDE RID: 3038
[Token(Token = "0x4000BDE")]
[XmlEnum("skip")]
Skip,
/// <summary>If the associated schema is found, the document items will be validated. No errors will be thrown otherwise.</summary>
// Token: 0x04000BDF RID: 3039
[Token(Token = "0x4000BDF")]
[XmlEnum("lax")]
Lax,
/// <summary>The schema processor must find a schema associated with the indicated namespace to validate the document items.</summary>
// Token: 0x04000BE0 RID: 3040
[Token(Token = "0x4000BE0")]
[XmlEnum("strict")]
Strict
}
}