This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>An abstract class for <see cref="T:System.Xml.Schema.XmlSchemaAll" />, <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" />.</summary>
// Token: 0x02000116 RID: 278
[Token(Token = "0x2000116")]
public abstract class XmlSchemaGroupBase : XmlSchemaParticle
{
/// <summary>This collection is used to add new elements to the compositor.</summary>
/// <returns>An <see langword="XmlSchemaObjectCollection" />.</returns>
// Token: 0x17000305 RID: 773
// (get) Token: 0x06000876 RID: 2166
[Token(Token = "0x17000305")]
[XmlIgnore]
public abstract XmlSchemaObjectCollection Items
{
[Token(Token = "0x6000876")]
[Address(Slot = "7")]
get;
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaGroupBase" /> class.</summary>
// Token: 0x06000877 RID: 2167 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000877")]
[Address(RVA = "0x5D0BD0", Offset = "0x5CF9D0", VA = "0x1805D0BD0")]
protected XmlSchemaGroupBase()
{
}
}
}