Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

62 lines
2.0 KiB
C#

using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the World Wide Web Consortium (W3C) <see langword="all" /> element (compositor).</summary>
// Token: 0x0200020D RID: 525
[Token(Token = "0x200020D")]
public class XmlSchemaAll : XmlSchemaGroupBase
{
/// <summary>Gets the collection of <see langword="XmlSchemaElement" /> elements contained within the <see langword="all" /> compositor.</summary>
/// <returns>The collection of elements contained in <see langword="XmlSchemaAll" />.</returns>
// Token: 0x170005A5 RID: 1445
// (get) Token: 0x060014E1 RID: 5345 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005A5")]
[XmlElement("element", typeof(XmlSchemaElement))]
public override XmlSchemaObjectCollection Items
{
[Token(Token = "0x60014E1")]
[Address(RVA = "0x4177C0", Offset = "0x4167C0", VA = "0x1804177C0", Slot = "16")]
get
{
return null;
}
}
// Token: 0x170005A6 RID: 1446
// (get) Token: 0x060014E2 RID: 5346 RVA: 0x000095A0 File Offset: 0x000077A0
[Token(Token = "0x170005A6")]
internal override bool IsEmpty
{
[Token(Token = "0x60014E2")]
[Address(RVA = "0x828D10", Offset = "0x827D10", VA = "0x180828D10", Slot = "14")]
get
{
return default(bool);
}
}
// Token: 0x060014E3 RID: 5347 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60014E3")]
[Address(RVA = "0x417AB0", Offset = "0x416AB0", VA = "0x180417AB0", Slot = "17")]
internal override void SetItems(XmlSchemaObjectCollection newItems)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAll" /> class.</summary>
// Token: 0x060014E4 RID: 5348 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60014E4")]
[Address(RVA = "0x828C70", Offset = "0x827C70", VA = "0x180828C70")]
public XmlSchemaAll()
{
}
// Token: 0x04000B92 RID: 2962
[FieldOffset(Offset = "0x78")]
[Token(Token = "0x4000B92")]
private XmlSchemaObjectCollection items;
}
}