XmlSchemaSimpleContent.cs 517 B

12345678910111213141516171819202122232425
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. using System.Xml.Serialization;
  5. namespace System.Xml.Schema
  6. {
  7. /// <summary>
  8. /// Summary description for XmlSchemaSimpleContent.
  9. /// </summary>
  10. public class XmlSchemaSimpleContent : XmlSchemaContentModel
  11. {
  12. private XmlSchemaContent content;
  13. public XmlSchemaSimpleContent()
  14. {
  15. }
  16. [XmlElement]
  17. public override XmlSchemaContent Content
  18. {
  19. get{ return content; }
  20. set{ content = value; }
  21. }
  22. }
  23. }