56 lines
1.7 KiB
C#
56 lines
1.7 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Schema
|
|
{
|
|
/// <summary>Provides different methods for preventing derivation.</summary>
|
|
// Token: 0x02000224 RID: 548
|
|
[Token(Token = "0x2000224")]
|
|
[Flags]
|
|
public enum XmlSchemaDerivationMethod
|
|
{
|
|
/// <summary>Override default derivation method to allow any derivation.</summary>
|
|
// Token: 0x04000BE7 RID: 3047
|
|
[Token(Token = "0x4000BE7")]
|
|
[XmlEnum("")]
|
|
Empty = 0,
|
|
/// <summary>Refers to derivations by <see langword="Substitution" />.</summary>
|
|
// Token: 0x04000BE8 RID: 3048
|
|
[Token(Token = "0x4000BE8")]
|
|
[XmlEnum("substitution")]
|
|
Substitution = 1,
|
|
/// <summary>Refers to derivations by <see langword="Extension" />.</summary>
|
|
// Token: 0x04000BE9 RID: 3049
|
|
[Token(Token = "0x4000BE9")]
|
|
[XmlEnum("extension")]
|
|
Extension = 2,
|
|
/// <summary>Refers to derivations by <see langword="Restriction" />.</summary>
|
|
// Token: 0x04000BEA RID: 3050
|
|
[Token(Token = "0x4000BEA")]
|
|
[XmlEnum("restriction")]
|
|
Restriction = 4,
|
|
/// <summary>Refers to derivations by <see langword="List" />.</summary>
|
|
// Token: 0x04000BEB RID: 3051
|
|
[Token(Token = "0x4000BEB")]
|
|
[XmlEnum("list")]
|
|
List = 8,
|
|
/// <summary>Refers to derivations by <see langword="Union" />.</summary>
|
|
// Token: 0x04000BEC RID: 3052
|
|
[Token(Token = "0x4000BEC")]
|
|
[XmlEnum("union")]
|
|
Union = 16,
|
|
/// <summary>
|
|
/// <see langword="#all" />. Refers to all derivation methods.</summary>
|
|
// Token: 0x04000BED RID: 3053
|
|
[Token(Token = "0x4000BED")]
|
|
[XmlEnum("#all")]
|
|
All = 255,
|
|
/// <summary>Accepts the default derivation method.</summary>
|
|
// Token: 0x04000BEE RID: 3054
|
|
[Token(Token = "0x4000BEE")]
|
|
[XmlIgnore]
|
|
None = 256
|
|
}
|
|
}
|