// // System.Xml.Schema.XmlSchemaContent.cs // // Author: // Dwivedi, Ajay kumar Adwiv@Yahoo.com // Atsushi Enomoto ginga@kit.hi-ho.ne.jp // using System; namespace System.Xml.Schema { /// /// Summary description for XmlSchemaContent. /// public abstract class XmlSchemaContent : XmlSchemaAnnotated { internal object actualBaseSchemaType; protected XmlSchemaContent() {} internal object ActualBaseSchemaType { get { return actualBaseSchemaType; } } } }