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 allows only one of its children to appear in an instance.
// Token: 0x0200010D RID: 269
[Token(Token = "0x200010D")]
public class XmlSchemaChoice : XmlSchemaGroupBase
{
/// Gets the collection of the elements contained with the compositor (): , , , , or .
/// The collection of elements contained within .
// Token: 0x170002F6 RID: 758
// (get) Token: 0x06000850 RID: 2128 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002F6")]
[XmlElement("element", typeof(XmlSchemaElement))]
[XmlElement("sequence", typeof(XmlSchemaSequence))]
[XmlElement("choice", typeof(XmlSchemaChoice))]
[XmlElement("any", typeof(XmlSchemaAny))]
[XmlElement("group", typeof(XmlSchemaGroupRef))]
public override XmlSchemaObjectCollection Items
{
[Token(Token = "0x6000850")]
[Address(RVA = "0x3F63D0", Offset = "0x3F51D0", VA = "0x1803F63D0", Slot = "7")]
get
{
return null;
}
}
// Token: 0x0400040B RID: 1035
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x400040B")]
private XmlSchemaObjectCollection items;
}
}