Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/Schema/XmlSchemaAnnotation.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

102 lines
3.3 KiB
C#

using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the World Wide Web Consortium (W3C) <see langword="annotation" /> element.</summary>
// Token: 0x0200020F RID: 527
[Token(Token = "0x200020F")]
public class XmlSchemaAnnotation : XmlSchemaObject
{
/// <summary>Gets or sets the string id.</summary>
/// <returns>The string id. The default is <see langword="String.Empty" />.Optional.</returns>
// Token: 0x170005AB RID: 1451
// (get) Token: 0x060014F0 RID: 5360 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060014F1 RID: 5361 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005AB")]
[XmlAttribute("id", DataType = "ID")]
public string Id
{
[Token(Token = "0x60014F0")]
[Address(RVA = "0x41CEF0", Offset = "0x41BEF0", VA = "0x18041CEF0")]
get
{
return null;
}
[Token(Token = "0x60014F1")]
[Address(RVA = "0x41CFF0", Offset = "0x41BFF0", VA = "0x18041CFF0")]
set
{
}
}
/// <summary>Gets the <see langword="Items" /> collection that is used to store the <see langword="appinfo" /> and <see langword="documentation" /> child elements.</summary>
/// <returns>An <see cref="T:System.Xml.Schema.XmlSchemaObjectCollection" /> of <see langword="appinfo" /> and <see langword="documentation" /> child elements.</returns>
// Token: 0x170005AC RID: 1452
// (get) Token: 0x060014F2 RID: 5362 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005AC")]
[XmlElement("appinfo", typeof(XmlSchemaAppInfo))]
[XmlElement("documentation", typeof(XmlSchemaDocumentation))]
public XmlSchemaObjectCollection Items
{
[Token(Token = "0x60014F2")]
[Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680")]
get
{
return null;
}
}
// Token: 0x170005AD RID: 1453
// (get) Token: 0x060014F3 RID: 5363 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060014F4 RID: 5364 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005AD")]
[XmlIgnore]
internal override string IdAttribute
{
[Token(Token = "0x60014F3")]
[Address(RVA = "0x41CEF0", Offset = "0x41BEF0", VA = "0x18041CEF0", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x60014F4")]
[Address(RVA = "0x41CFF0", Offset = "0x41BFF0", VA = "0x18041CFF0", Slot = "8")]
set
{
}
}
// Token: 0x060014F5 RID: 5365 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60014F5")]
[Address(RVA = "0x55BCF0", Offset = "0x55ACF0", VA = "0x18055BCF0", Slot = "9")]
internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAnnotation" /> class.</summary>
// Token: 0x060014F6 RID: 5366 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60014F6")]
[Address(RVA = "0x828D50", Offset = "0x827D50", VA = "0x180828D50")]
public XmlSchemaAnnotation()
{
}
// Token: 0x04000B96 RID: 2966
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x4000B96")]
private string id;
// Token: 0x04000B97 RID: 2967
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x4000B97")]
private XmlSchemaObjectCollection items;
// Token: 0x04000B98 RID: 2968
[FieldOffset(Offset = "0x48")]
[Token(Token = "0x4000B98")]
private XmlAttribute[] moreAttributes;
}
}