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