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

48 lines
1.7 KiB
C#

using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the <see langword="attributeGroup" /> element with the <see langword="ref" /> attribute from the XML Schema as specified by the World Wide Web Consortium (W3C). AttributesGroupRef is the reference for an attributeGroup, name property contains the attribute group being referenced. </summary>
// Token: 0x02000215 RID: 533
[Token(Token = "0x2000215")]
public class XmlSchemaAttributeGroupRef : XmlSchemaAnnotated
{
/// <summary>Gets or sets the name of the referenced <see langword="attributeGroup" /> element.</summary>
/// <returns>The name of the referenced attribute group. The value must be a QName.</returns>
// Token: 0x170005D1 RID: 1489
// (get) Token: 0x06001540 RID: 5440 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06001541 RID: 5441 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005D1")]
[XmlAttribute("ref")]
public XmlQualifiedName RefName
{
[Token(Token = "0x6001540")]
[Address(RVA = "0x4936E0", Offset = "0x4926E0", VA = "0x1804936E0")]
get
{
return null;
}
[Token(Token = "0x6001541")]
[Address(RVA = "0x8296D0", Offset = "0x8286D0", VA = "0x1808296D0")]
set
{
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroupRef" /> class.</summary>
// Token: 0x06001542 RID: 5442 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001542")]
[Address(RVA = "0x829660", Offset = "0x828660", VA = "0x180829660")]
public XmlSchemaAttributeGroupRef()
{
}
// Token: 0x04000BB4 RID: 2996
[FieldOffset(Offset = "0x50")]
[Token(Token = "0x4000BB4")]
private XmlQualifiedName refName;
}
}