XmlSchemaContent.cs 438 B

12345678910111213141516171819202122
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. namespace System.Xml.Schema
  5. {
  6. /// <summary>
  7. /// Summary description for XmlSchemaContent.
  8. /// </summary>
  9. public abstract class XmlSchemaContent : XmlSchemaAnnotated
  10. {
  11. internal object actualBaseSchemaType;
  12. protected XmlSchemaContent()
  13. {}
  14. internal object ActualBaseSchemaType
  15. {
  16. get { return actualBaseSchemaType; }
  17. }
  18. }
  19. }