using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// Provides information about the validation mode of and element replacements.
// Token: 0x02000110 RID: 272
[Token(Token = "0x2000110")]
public enum XmlSchemaContentProcessing
{
/// Document items are not validated.
// Token: 0x04000415 RID: 1045
[Token(Token = "0x4000415")]
[XmlIgnore]
None,
/// Document items must consist of well-formed XML and are not validated by the schema.
// Token: 0x04000416 RID: 1046
[Token(Token = "0x4000416")]
[XmlEnum("skip")]
Skip,
/// If the associated schema is found, the document items will be validated. No errors will be thrown otherwise.
// Token: 0x04000417 RID: 1047
[Token(Token = "0x4000417")]
[XmlEnum("lax")]
Lax,
/// The schema processor must find a schema associated with the indicated namespace to validate the document items.
// Token: 0x04000418 RID: 1048
[Token(Token = "0x4000418")]
[XmlEnum("strict")]
Strict
}
}