| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // 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; }
- }
- internal abstract XmlQualifiedName GetBaseTypeName ();
- internal virtual XmlSchemaParticle GetParticle ()
- {
- return null; // default for simple types
- }
- }
- }
|