2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="XmlSchemaChoice.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
2017-08-21 15:34:15 +00:00
|
|
|
// <owner current="true" primary="true">Microsoft</owner>
|
2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace System.Xml.Schema {
|
|
|
|
|
|
|
|
using System.Collections;
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
/// <include file='doc\XmlSchemaChoice.uex' path='docs/doc[@for="XmlSchemaChoice"]/*' />
|
|
|
|
/// <devdoc>
|
|
|
|
/// <para>[To be supplied.]</para>
|
|
|
|
/// </devdoc>
|
|
|
|
public class XmlSchemaChoice : XmlSchemaGroupBase {
|
|
|
|
XmlSchemaObjectCollection items = new XmlSchemaObjectCollection();
|
|
|
|
|
|
|
|
/// <include file='doc\XmlSchemaChoice.uex' path='docs/doc[@for="XmlSchemaChoice.Items"]/*' />
|
|
|
|
/// <devdoc>
|
|
|
|
/// <para>[To be supplied.]</para>
|
|
|
|
/// </devdoc>
|
|
|
|
[XmlElement("element", typeof(XmlSchemaElement)),
|
|
|
|
XmlElement("group", typeof(XmlSchemaGroupRef)),
|
|
|
|
XmlElement("choice", typeof(XmlSchemaChoice)),
|
|
|
|
XmlElement("sequence", typeof(XmlSchemaSequence)),
|
|
|
|
XmlElement("any", typeof(XmlSchemaAny))]
|
|
|
|
public override XmlSchemaObjectCollection Items {
|
|
|
|
get { return items; }
|
|
|
|
}
|
|
|
|
|
|
|
|
internal override bool IsEmpty {
|
|
|
|
get { return base.IsEmpty /*|| items.Count == 0*/; }
|
|
|
|
}
|
|
|
|
|
|
|
|
internal override void SetItems(XmlSchemaObjectCollection newItems) {
|
|
|
|
items = newItems;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|