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

69 lines
2.2 KiB
C#

using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the World Wide Web Consortium (W3C) <see langword="appinfo" /> element.</summary>
// Token: 0x02000212 RID: 530
[Token(Token = "0x2000212")]
public class XmlSchemaAppInfo : XmlSchemaObject
{
/// <summary>Gets or sets the source of the application information.</summary>
/// <returns>A Uniform Resource Identifier (URI) reference. The default is <see langword="String.Empty" />.Optional.</returns>
// Token: 0x170005B8 RID: 1464
// (set) Token: 0x0600150E RID: 5390 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005B8")]
[XmlAttribute("source", DataType = "anyURI")]
public string Source
{
[Token(Token = "0x600150E")]
[Address(RVA = "0x41CFF0", Offset = "0x41BFF0", VA = "0x18041CFF0")]
set
{
}
}
/// <summary>Gets or sets an array of <see cref="T:System.Xml.XmlNode" /> objects that represents the <see langword="appinfo" /> child nodes.</summary>
/// <returns>An array of <see cref="T:System.Xml.XmlNode" /> objects that represents the <see langword="appinfo" /> child nodes.</returns>
// Token: 0x170005B9 RID: 1465
// (get) Token: 0x0600150F RID: 5391 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06001510 RID: 5392 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005B9")]
[XmlText]
[XmlAnyElement]
public XmlNode[] Markup
{
[Token(Token = "0x600150F")]
[Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680")]
get
{
return null;
}
[Token(Token = "0x6001510")]
[Address(RVA = "0x417960", Offset = "0x416960", VA = "0x180417960")]
set
{
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAppInfo" /> class.</summary>
// Token: 0x06001511 RID: 5393 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001511")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
public XmlSchemaAppInfo()
{
}
// Token: 0x04000B9F RID: 2975
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x4000B9F")]
private string source;
// Token: 0x04000BA0 RID: 2976
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x4000BA0")]
private XmlNode[] markup;
}
}