| 1234567891011121314151617181920212223242526272829303132 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaComplexContent.
- /// </summary>
- public class XmlSchemaComplexContent : XmlSchemaContentModel
- {
- private XmlSchemaContent content;
- private bool isMixed;
- public XmlSchemaComplexContent()
- {
- }
- [XmlElement]
- public override XmlSchemaContent Content
- {
- get{ return content; }
- set{ content = value; }
- }
- [XmlAttribute]
- public bool IsMixed
- {
- get{ return isMixed; }
- set{ isMixed = value; }
- }
- }
- }
|