XmlSchemaInfo.cs 432 B

12345678910111213141516171819
  1. using System;
  2. using System.Xml;
  3. namespace System.Xml.Schema
  4. {
  5. /// <summary>
  6. /// This class would store the infomation we need during compilation.
  7. /// (maybe during validation too.. who knows)
  8. /// </summary>
  9. internal class XmlSchemaInfo
  10. {
  11. internal XmlSchemaInfo()
  12. {}
  13. internal string targetNS;
  14. internal XmlSchemaDerivationMethod finalDefault;
  15. internal XmlSchemaDerivationMethod blockDefault;
  16. }
  17. }