This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,47 @@
using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>This class represents the <see langword="keyref" /> element from XMLSchema as specified by the World Wide Web Consortium (W3C).</summary>
// Token: 0x02000240 RID: 576
[Token(Token = "0x2000240")]
public class XmlSchemaKeyref : XmlSchemaIdentityConstraint
{
/// <summary>Gets or sets the name of the key that this constraint refers to in another simple or complex type.</summary>
/// <returns>The QName of the key that this constraint refers to.</returns>
// Token: 0x17000648 RID: 1608
// (get) Token: 0x06001665 RID: 5733 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06001666 RID: 5734 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000648")]
[XmlAttribute("refer")]
public XmlQualifiedName Refer
{
[Token(Token = "0x6001665")]
[Address(RVA = "0x4177C0", Offset = "0x4167C0", VA = "0x1804177C0")]
get
{
return null;
}
[Token(Token = "0x6001666")]
[Address(RVA = "0x839320", Offset = "0x838320", VA = "0x180839320")]
set
{
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaKeyref" /> class.</summary>
// Token: 0x06001667 RID: 5735 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001667")]
[Address(RVA = "0x8392B0", Offset = "0x8382B0", VA = "0x1808392B0")]
public XmlSchemaKeyref()
{
}
// Token: 0x04000C39 RID: 3129
[FieldOffset(Offset = "0x78")]
[Token(Token = "0x4000C39")]
private XmlQualifiedName refer;
}
}