The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
XmlSchemaDerivationMethod Enumeration
.NET Framework 1.1
Provides different methods for preventing derivation.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Visual Basic] <Flags> <Serializable> Public Enum XmlSchemaDerivationMethod [C#] [Flags] [Serializable] public enum XmlSchemaDerivationMethod [C++] [Flags] [Serializable] __value public enum XmlSchemaDerivationMethod [JScript] public Flags Serializable enum XmlSchemaDerivationMethod
Members
| Member name | Description | Value |
|---|---|---|
| All | #all. Refers to all derivation methods. | 255 |
| Empty | Override default derivation method to allow any derivation. | 0 |
| Extension | Refers to derivations by Extension. | 2 |
| List | Refers to derivations by List. | 8 |
| None | Accepts the default derivation method. | 256 |
| Restriction | Refers to derivations by Restriction. | 4 |
| Substitution | Refers to derivations by Substitution. | 1 |
| Union | Refers to derivations by Union. | 16 |
Requirements
Namespace: System.Xml.Schema
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Xml (in System.Xml.dll)
See Also
Show: