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

136 lines
4.4 KiB
C#

using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>The base class for any element that can contain annotation elements.</summary>
// Token: 0x0200020E RID: 526
[Token(Token = "0x200020E")]
public class XmlSchemaAnnotated : XmlSchemaObject
{
/// <summary>Gets or sets the string id.</summary>
/// <returns>The string id. The default is <see langword="String.Empty" />.Optional.</returns>
// Token: 0x170005A7 RID: 1447
// (get) Token: 0x060014E5 RID: 5349 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060014E6 RID: 5350 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005A7")]
[XmlAttribute("id", DataType = "ID")]
public string Id
{
[Token(Token = "0x60014E5")]
[Address(RVA = "0x41CEF0", Offset = "0x41BEF0", VA = "0x18041CEF0")]
get
{
return null;
}
[Token(Token = "0x60014E6")]
[Address(RVA = "0x41CFF0", Offset = "0x41BFF0", VA = "0x18041CFF0")]
set
{
}
}
/// <summary>Gets or sets the <see langword="annotation" /> property.</summary>
/// <returns>An <see cref="T:System.Xml.Schema.XmlSchemaAnnotation" /> representing the <see langword="annotation" /> property.</returns>
// Token: 0x170005A8 RID: 1448
// (get) Token: 0x060014E7 RID: 5351 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060014E8 RID: 5352 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005A8")]
[XmlElement("annotation", typeof(XmlSchemaAnnotation))]
public XmlSchemaAnnotation Annotation
{
[Token(Token = "0x60014E7")]
[Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680")]
get
{
return null;
}
[Token(Token = "0x60014E8")]
[Address(RVA = "0x417960", Offset = "0x416960", VA = "0x180417960")]
set
{
}
}
/// <summary>Gets or sets the qualified attributes that do not belong to the current schema's target namespace.</summary>
/// <returns>An array of qualified <see cref="T:System.Xml.XmlAttribute" /> objects that do not belong to the schema's target namespace.</returns>
// Token: 0x170005A9 RID: 1449
// (get) Token: 0x060014E9 RID: 5353 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060014EA RID: 5354 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005A9")]
[XmlAnyAttribute]
public XmlAttribute[] UnhandledAttributes
{
[Token(Token = "0x60014E9")]
[Address(RVA = "0x4975A0", Offset = "0x4965A0", VA = "0x1804975A0")]
get
{
return null;
}
[Token(Token = "0x60014EA")]
[Address(RVA = "0x55BCF0", Offset = "0x55ACF0", VA = "0x18055BCF0")]
set
{
}
}
// Token: 0x170005AA RID: 1450
// (get) Token: 0x060014EB RID: 5355 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060014EC RID: 5356 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005AA")]
[XmlIgnore]
internal override string IdAttribute
{
[Token(Token = "0x60014EB")]
[Address(RVA = "0x41CEF0", Offset = "0x41BEF0", VA = "0x18041CEF0", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x60014EC")]
[Address(RVA = "0x41CFF0", Offset = "0x41BFF0", VA = "0x18041CFF0", Slot = "8")]
set
{
}
}
// Token: 0x060014ED RID: 5357 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60014ED")]
[Address(RVA = "0x55BCF0", Offset = "0x55ACF0", VA = "0x18055BCF0", Slot = "9")]
internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
{
}
// Token: 0x060014EE RID: 5358 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60014EE")]
[Address(RVA = "0x417960", Offset = "0x416960", VA = "0x180417960", Slot = "10")]
internal override void AddAnnotation(XmlSchemaAnnotation annotation)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAnnotated" /> class.</summary>
// Token: 0x060014EF RID: 5359 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60014EF")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
public XmlSchemaAnnotated()
{
}
// Token: 0x04000B93 RID: 2963
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x4000B93")]
private string id;
// Token: 0x04000B94 RID: 2964
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x4000B94")]
private XmlSchemaAnnotation annotation;
// Token: 0x04000B95 RID: 2965
[FieldOffset(Offset = "0x48")]
[Token(Token = "0x4000B95")]
private XmlAttribute[] moreAttributes;
}
}