XmlSchemaDerivationMethod.cs 684 B

12345678910111213141516171819202122232425262728293031
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. using System.Xml.Serialization;
  5. namespace System.Xml.Schema
  6. {
  7. /// <summary>
  8. /// Summary description for XmlSchemaDerivationMethod.
  9. /// </summary>
  10. [Flags]
  11. public enum XmlSchemaDerivationMethod
  12. {
  13. [XmlEnum("")]
  14. Empty = 0x00000000,
  15. [XmlEnum("substitution")]
  16. Substitution= 0x00000001,
  17. [XmlEnum("extension")]
  18. Extension = 0x00000002,
  19. [XmlEnum("restriction")]
  20. Restriction = 0x00000004,
  21. [XmlEnum("list")]
  22. List = 0x00000008,
  23. [XmlEnum("union")]
  24. Union = 0x00000010,
  25. [XmlEnum("#all")]
  26. All = 0x000000FF,
  27. [XmlIgnore]
  28. None = 0x00000100,
  29. }
  30. }