mscorlib(4.0.0.0) API with additions
XmlSchemaDerivationMethod.cs
2 
3 namespace System.Xml.Schema
4 {
6  [Flags]
8  {
10  [XmlEnum("")]
11  Empty = 0x0,
13  [XmlEnum("substitution")]
14  Substitution = 0x1,
16  [XmlEnum("extension")]
17  Extension = 0x2,
19  [XmlEnum("restriction")]
20  Restriction = 0x4,
22  [XmlEnum("list")]
23  List = 0x8,
25  [XmlEnum("union")]
26  Union = 0x10,
29  [XmlEnum("#all")]
30  All = 0xFF,
32  [XmlIgnore]
33  None = 0x100
34  }
35 }
Definition: __Canon.cs:3
Attribute can be applied to any application element.
Refers to derivations by Restriction.
XmlSchemaDerivationMethod
Provides different methods for preventing derivation.
Refers to derivations by Substitution.