| 12345678910111213141516171819202122232425 |
- //
- // System.Xml.Schema.XmlSchemaContent.cs
- //
- // Author:
- // Dwivedi, Ajay kumar [email protected]
- // Atsushi Enomoto [email protected]
- //
- using System;
- namespace System.Xml.Schema
- {
- public abstract class XmlSchemaContent : XmlSchemaAnnotated
- {
- protected XmlSchemaContent()
- {}
- internal object actualBaseSchemaType;
- internal abstract bool IsExtension { get; }
- internal abstract XmlQualifiedName GetBaseTypeName ();
- internal abstract XmlSchemaParticle GetParticle ();
- }
- }
|