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: 0x02000216 RID: 534 [Token(Token = "0x2000216")] public class XmlSchemaChoice : XmlSchemaGroupBase { /// Gets the collection of the elements contained with the compositor (): , , , , or . /// The collection of elements contained within . // Token: 0x170005D2 RID: 1490 // (get) Token: 0x06001543 RID: 5443 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170005D2")] [XmlElement("choice", typeof(XmlSchemaChoice))] [XmlElement("element", typeof(XmlSchemaElement))] [XmlElement("sequence", typeof(XmlSchemaSequence))] [XmlElement("group", typeof(XmlSchemaGroupRef))] [XmlElement("any", typeof(XmlSchemaAny))] public override XmlSchemaObjectCollection Items { [Token(Token = "0x6001543")] [Address(RVA = "0x4177C0", Offset = "0x4167C0", VA = "0x1804177C0", Slot = "16")] get { return null; } } // Token: 0x170005D3 RID: 1491 // (get) Token: 0x06001544 RID: 5444 RVA: 0x00009690 File Offset: 0x00007890 [Token(Token = "0x170005D3")] internal override bool IsEmpty { [Token(Token = "0x6001544")] [Address(RVA = "0x829D30", Offset = "0x828D30", VA = "0x180829D30", Slot = "14")] get { return default(bool); } } // Token: 0x06001545 RID: 5445 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001545")] [Address(RVA = "0x417AB0", Offset = "0x416AB0", VA = "0x180417AB0", Slot = "17")] internal override void SetItems(XmlSchemaObjectCollection newItems) { } /// Initializes a new instance of the class. // Token: 0x06001546 RID: 5446 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001546")] [Address(RVA = "0x829C90", Offset = "0x828C90", VA = "0x180829C90")] public XmlSchemaChoice() { } // Token: 0x04000BB5 RID: 2997 [FieldOffset(Offset = "0x78")] [Token(Token = "0x4000BB5")] private XmlSchemaObjectCollection items; } }