XmlSchemaContent.cs 519 B

12345678910111213141516171819202122232425
  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. public abstract class XmlSchemaContent : XmlSchemaAnnotated
  12. {
  13. protected XmlSchemaContent()
  14. {}
  15. internal object actualBaseSchemaType;
  16. internal abstract bool IsExtension { get; }
  17. internal abstract XmlQualifiedName GetBaseTypeName ();
  18. internal abstract XmlSchemaParticle GetParticle ();
  19. }
  20. }