using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// Represents the element with the 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.
// Token: 0x02000215 RID: 533
[Token(Token = "0x2000215")]
public class XmlSchemaAttributeGroupRef : XmlSchemaAnnotated
{
/// Gets or sets the name of the referenced element.
/// The name of the referenced attribute group. The value must be a QName.
// 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
{
}
}
/// Initializes a new instance of the class.
// 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;
}
}