| 12345678910111213141516171819202122232425 |
- // 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]
- public override XmlSchemaContent Content
- {
- get{ return content; }
- set{ content = value; }
- }
- }
- }
|