m
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
using System;
|
||||
using System.Xml.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml.Schema
|
||||
{
|
||||
/// <summary>Represents the <see langword="group" /> element with <see langword="ref" /> attribute from the XML Schema as specified by the World Wide Web Consortium (W3C). This class is used within complex types that reference a <see langword="group" /> defined at the <see langword="schema" /> level.</summary>
|
||||
// Token: 0x0200023B RID: 571
|
||||
[Token(Token = "0x200023B")]
|
||||
public class XmlSchemaGroupRef : XmlSchemaParticle
|
||||
{
|
||||
/// <summary>Gets or sets the name of a group defined in this schema (or another schema indicated by the specified namespace).</summary>
|
||||
/// <returns>The name of a group defined in this schema.</returns>
|
||||
// Token: 0x1700063E RID: 1598
|
||||
// (get) Token: 0x0600164D RID: 5709 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x0600164E RID: 5710 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700063E")]
|
||||
[XmlAttribute("ref")]
|
||||
public XmlQualifiedName RefName
|
||||
{
|
||||
[Token(Token = "0x600164D")]
|
||||
[Address(RVA = "0x4177C0", Offset = "0x4167C0", VA = "0x1804177C0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600164E")]
|
||||
[Address(RVA = "0x82EF90", Offset = "0x82DF90", VA = "0x18082EF90")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets one of the <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaAll" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> classes, which holds the post-compilation value of the <see langword="Particle" /> property.</summary>
|
||||
/// <returns>The post-compilation value of the <see langword="Particle" /> property, which is one of the <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaAll" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> classes.</returns>
|
||||
// Token: 0x1700063F RID: 1599
|
||||
// (get) Token: 0x0600164F RID: 5711 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700063F")]
|
||||
[XmlIgnore]
|
||||
public XmlSchemaGroupBase Particle
|
||||
{
|
||||
[Token(Token = "0x600164F")]
|
||||
[Address(RVA = "0x4177B0", Offset = "0x4167B0", VA = "0x1804177B0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001650 RID: 5712 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001650")]
|
||||
[Address(RVA = "0x417AA0", Offset = "0x416AA0", VA = "0x180417AA0")]
|
||||
internal void SetParticle(XmlSchemaGroupBase value)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x17000640 RID: 1600
|
||||
// (get) Token: 0x06001651 RID: 5713 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001652 RID: 5714 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000640")]
|
||||
[XmlIgnore]
|
||||
internal XmlSchemaGroup Redefined
|
||||
{
|
||||
[Token(Token = "0x6001651")]
|
||||
[Address(RVA = "0x4C31C0", Offset = "0x4C21C0", VA = "0x1804C31C0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001652")]
|
||||
[Address(RVA = "0x497020", Offset = "0x496020", VA = "0x180497020")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaGroupRef" /> class.</summary>
|
||||
// Token: 0x06001653 RID: 5715 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001653")]
|
||||
[Address(RVA = "0x82EF00", Offset = "0x82DF00", VA = "0x18082EF00")]
|
||||
public XmlSchemaGroupRef()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000C30 RID: 3120
|
||||
[FieldOffset(Offset = "0x78")]
|
||||
[Token(Token = "0x4000C30")]
|
||||
private XmlQualifiedName refName;
|
||||
|
||||
// Token: 0x04000C31 RID: 3121
|
||||
[FieldOffset(Offset = "0x80")]
|
||||
[Token(Token = "0x4000C31")]
|
||||
private XmlSchemaGroupBase particle;
|
||||
|
||||
// Token: 0x04000C32 RID: 3122
|
||||
[FieldOffset(Offset = "0x88")]
|
||||
[Token(Token = "0x4000C32")]
|
||||
private XmlSchemaGroup refined;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user