XmlSchemaContent.cs 525 B

123456789101112131415161718192021222324252627
  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. internal object actualBaseSchemaType;
  17. protected XmlSchemaContent()
  18. {}
  19. internal object ActualBaseSchemaType
  20. {
  21. get { return actualBaseSchemaType; }
  22. }
  23. }
  24. }