Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

66 lines
2.6 KiB
C#

using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the <see langword="sequence" /> element (compositor) from the XML Schema as specified by the World Wide Web Consortium (W3C). The <see langword="sequence" /> requires the elements in the group to appear in the specified sequence within the containing element.</summary>
// Token: 0x02000252 RID: 594
[Token(Token = "0x2000252")]
public class XmlSchemaSequence : XmlSchemaGroupBase
{
/// <summary>The elements contained within the compositor. Collection of <see cref="T:System.Xml.Schema.XmlSchemaElement" />, <see cref="T:System.Xml.Schema.XmlSchemaGroupRef" />, <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaSequence" />, or <see cref="T:System.Xml.Schema.XmlSchemaAny" />.</summary>
/// <returns>The elements contained within the compositor.</returns>
// Token: 0x1700067A RID: 1658
// (get) Token: 0x060016E8 RID: 5864 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700067A")]
[XmlElement("choice", typeof(XmlSchemaChoice))]
[XmlElement("any", typeof(XmlSchemaAny))]
[XmlElement("element", typeof(XmlSchemaElement))]
[XmlElement("group", typeof(XmlSchemaGroupRef))]
[XmlElement("sequence", typeof(XmlSchemaSequence))]
public override XmlSchemaObjectCollection Items
{
[Token(Token = "0x60016E8")]
[Address(RVA = "0x4177C0", Offset = "0x4167C0", VA = "0x1804177C0", Slot = "16")]
get
{
return null;
}
}
// Token: 0x1700067B RID: 1659
// (get) Token: 0x060016E9 RID: 5865 RVA: 0x00009C48 File Offset: 0x00007E48
[Token(Token = "0x1700067B")]
internal override bool IsEmpty
{
[Token(Token = "0x60016E9")]
[Address(RVA = "0x828D10", Offset = "0x827D10", VA = "0x180828D10", Slot = "14")]
get
{
return default(bool);
}
}
// Token: 0x060016EA RID: 5866 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016EA")]
[Address(RVA = "0x417AB0", Offset = "0x416AB0", VA = "0x180417AB0", Slot = "17")]
internal override void SetItems(XmlSchemaObjectCollection newItems)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> class.</summary>
// Token: 0x060016EB RID: 5867 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016EB")]
[Address(RVA = "0x83B160", Offset = "0x83A160", VA = "0x18083B160")]
public XmlSchemaSequence()
{
}
// Token: 0x04000C6D RID: 3181
[FieldOffset(Offset = "0x78")]
[Token(Token = "0x4000C6D")]
private XmlSchemaObjectCollection items;
}
}