using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// Represents the element (compositor) from the XML Schema as specified by the World Wide Web Consortium (W3C). The requires the elements in the group to appear in the specified sequence within the containing element.
// Token: 0x0200011E RID: 286
[Token(Token = "0x200011E")]
public class XmlSchemaSequence : XmlSchemaGroupBase
{
/// The elements contained within the compositor. Collection of , , , , or .
/// The elements contained within the compositor.
// Token: 0x1700030F RID: 783
// (get) Token: 0x06000891 RID: 2193 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700030F")]
[XmlElement("choice", typeof(XmlSchemaChoice))]
[XmlElement("any", typeof(XmlSchemaAny))]
[XmlElement("sequence", typeof(XmlSchemaSequence))]
[XmlElement("element", typeof(XmlSchemaElement))]
[XmlElement("group", typeof(XmlSchemaGroupRef))]
public override XmlSchemaObjectCollection Items
{
[Token(Token = "0x6000891")]
[Address(RVA = "0x3F63D0", Offset = "0x3F51D0", VA = "0x1803F63D0", Slot = "7")]
get
{
return null;
}
}
/// Initializes a new instance of the class.
// Token: 0x06000892 RID: 2194 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000892")]
[Address(RVA = "0x5D1270", Offset = "0x5D0070", VA = "0x1805D1270")]
public XmlSchemaSequence()
{
}
// Token: 0x0400043F RID: 1087
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x400043F")]
private XmlSchemaObjectCollection items;
}
}