| 12345678910111213141516171819202122 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaContentProcessing.
- /// </summary>
- public enum XmlSchemaContentProcessing
- {
- [XmlIgnore]
- None = 0,
- [XmlEnum("skip")]
- Skip = 1,
- [XmlEnum("lax")]
- Lax = 2,
- [XmlEnum("strict")]
- Strict = 3,
- }
- }
|