Files
Apr2020-Cpp2Il-Dump/System.Xml/Schema/XmlSchemaGroupBase.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

34 lines
1.1 KiB
C#

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()
{
}
}
}