| 123456789101112131415161718192021222324252627 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaSimpleContent.
- /// </summary>
- public class XmlSchemaSimpleContent : XmlSchemaContentModel
- {
- private XmlSchemaContent content;
- public XmlSchemaSimpleContent()
- {
- }
- [XmlElement("restriction",typeof(XmlSchemaSimpleContentRestriction),Namespace="http://www.w3.org/2001/XMLSchema")]
- [XmlElement("extension",typeof(XmlSchemaSimpleContentExtension),Namespace="http://www.w3.org/2001/XMLSchema")]
- public override XmlSchemaContent Content
- {
- get{ return content; }
- set{ content = value; }
- }
- }
- }
|