//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//------------------------------------------------------------------------------
namespace System.Xml.Schema {
using System.Xml.Serialization;
///
///
/// [To be supplied.]
///
public class XmlSchemaComplexContent : XmlSchemaContentModel {
XmlSchemaContent content;
bool isMixed;
bool hasMixedAttribute;
///
///
/// [To be supplied.]
///
[XmlAttribute("mixed")]
public bool IsMixed {
get { return isMixed; }
set { isMixed = value; hasMixedAttribute = true; }
}
///
///
/// [To be supplied.]
///
[XmlElement("restriction", typeof(XmlSchemaComplexContentRestriction)),
XmlElement("extension", typeof(XmlSchemaComplexContentExtension))]
public override XmlSchemaContent Content {
get { return content; }
set { content = value; }
}
[XmlIgnore]
internal bool HasMixedAttribute {
get { return hasMixedAttribute; }
}
}
}