oh dear
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Xml.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml.Schema
|
||||
{
|
||||
/// <summary>Represents the <see langword="choice" /> element (compositor) from the XML Schema as specified by the World Wide Web Consortium (W3C). The <see langword="choice" /> allows only one of its children to appear in an instance. </summary>
|
||||
// Token: 0x0200010D RID: 269
|
||||
[Token(Token = "0x200010D")]
|
||||
public class XmlSchemaChoice : XmlSchemaGroupBase
|
||||
{
|
||||
/// <summary>Gets the collection of the elements contained with the compositor (<see langword="choice" />): <see langword="XmlSchemaElement" />, <see langword="XmlSchemaGroupRef" />, <see langword="XmlSchemaChoice" />, <see langword="XmlSchemaSequence" />, or <see langword="XmlSchemaAny" />.</summary>
|
||||
/// <returns>The collection of elements contained within <see langword="XmlSchemaChoice" />.</returns>
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user