XmlSchemaContentProcessing.cs 424 B

12345678910111213141516171819202122
  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 XmlSchemaContentProcessing.
  9. /// </summary>
  10. public enum XmlSchemaContentProcessing
  11. {
  12. [XmlIgnore]
  13. None = 0,
  14. [XmlEnum("skip")]
  15. Skip = 1,
  16. [XmlEnum("lax")]
  17. Lax = 2,
  18. [XmlEnum("strict")]
  19. Strict = 3,
  20. }
  21. }