| 12345678910111213141516171819202122 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaContent.
- /// </summary>
- public abstract class XmlSchemaContent : XmlSchemaAnnotated
- {
- internal object actualBaseSchemaType;
- protected XmlSchemaContent()
- {}
- internal object ActualBaseSchemaType
- {
- get { return actualBaseSchemaType; }
- }
- }
- }
|