e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="XmlSchemaSequence.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
// <owner current="true" primary="true">[....]</owner>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Xml.Schema {
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
/// <include file='doc\XmlSchemaSequence.uex' path='docs/doc[@for="XmlSchemaSequence"]/*' />
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public class XmlSchemaSequence : XmlSchemaGroupBase {
|
|
XmlSchemaObjectCollection items = new XmlSchemaObjectCollection();
|
|
|
|
/// <include file='doc\XmlSchemaSequence.uex' path='docs/doc[@for="XmlSchemaSequence.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;
|
|
}
|
|
}
|
|
}
|