XmlSchemaContent.cs 601 B

12345678910111213141516171819202122232425262728
  1. //
  2. // System.Xml.Schema.XmlSchemaContent.cs
  3. //
  4. // Author:
  5. // Dwivedi, Ajay kumar [email protected]
  6. // Atsushi Enomoto [email protected]
  7. //
  8. using System;
  9. namespace System.Xml.Schema
  10. {
  11. /// <summary>
  12. /// Summary description for XmlSchemaContent.
  13. /// </summary>
  14. public abstract class XmlSchemaContent : XmlSchemaAnnotated
  15. {
  16. protected object actualBaseSchemaType;
  17. protected XmlSchemaContent()
  18. {}
  19. internal abstract bool IsExtension { get; }
  20. internal abstract XmlQualifiedName GetBaseTypeName ();
  21. internal abstract XmlSchemaParticle GetParticle ();
  22. }
  23. }