| 123456789101112131415161718192021222324252627 |
- //
- // System.Xml.Schema.XmlSchemaContent.cs
- //
- // Author:
- // Dwivedi, Ajay kumar [email protected]
- // Atsushi Enomoto [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; }
- }
- }
- }
|