46 lines
2.0 KiB
C#
46 lines
2.0 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: 0x0200011E RID: 286
|
|
[Token(Token = "0x200011E")]
|
|
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: 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;
|
|
}
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> class.</summary>
|
|
// 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;
|
|
}
|
|
}
|