This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,38 @@
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: 0x0200023A RID: 570
[Token(Token = "0x200023A")]
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: 0x1700063D RID: 1597
// (get) Token: 0x0600164A RID: 5706
[Token(Token = "0x1700063D")]
[XmlIgnore]
public abstract XmlSchemaObjectCollection Items
{
[Token(Token = "0x600164A")]
[Address(Slot = "16")]
get;
}
// Token: 0x0600164B RID: 5707
[Token(Token = "0x600164B")]
[Address(Slot = "17")]
internal abstract void SetItems(XmlSchemaObjectCollection newItems);
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaGroupBase" /> class.</summary>
// Token: 0x0600164C RID: 5708 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600164C")]
[Address(RVA = "0x82EEA0", Offset = "0x82DEA0", VA = "0x18082EEA0")]
protected XmlSchemaGroupBase()
{
}
}
}