34 lines
1.1 KiB
C#
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: 0x02000110 RID: 272
|
|
[Token(Token = "0x2000110")]
|
|
public enum XmlSchemaContentProcessing
|
|
{
|
|
/// <summary>Document items are not validated.</summary>
|
|
// Token: 0x04000415 RID: 1045
|
|
[Token(Token = "0x4000415")]
|
|
[XmlIgnore]
|
|
None,
|
|
/// <summary>Document items must consist of well-formed XML and are not validated by the schema.</summary>
|
|
// Token: 0x04000416 RID: 1046
|
|
[Token(Token = "0x4000416")]
|
|
[XmlEnum("skip")]
|
|
Skip,
|
|
/// <summary>If the associated schema is found, the document items will be validated. No errors will be thrown otherwise.</summary>
|
|
// Token: 0x04000417 RID: 1047
|
|
[Token(Token = "0x4000417")]
|
|
[XmlEnum("lax")]
|
|
Lax,
|
|
/// <summary>The schema processor must find a schema associated with the indicated namespace to validate the document items.</summary>
|
|
// Token: 0x04000418 RID: 1048
|
|
[Token(Token = "0x4000418")]
|
|
[XmlEnum("strict")]
|
|
Strict
|
|
}
|
|
}
|