m
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
using System;
|
||||
using System.Xml.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml.Schema
|
||||
{
|
||||
/// <summary>Represents the <see langword="documentation" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class specifies information to be read or used by humans within an <see langword="annotation" />.</summary>
|
||||
// Token: 0x02000225 RID: 549
|
||||
[Token(Token = "0x2000225")]
|
||||
public class XmlSchemaDocumentation : XmlSchemaObject
|
||||
{
|
||||
/// <summary>Gets or sets the Uniform Resource Identifier (URI) source of the information.</summary>
|
||||
/// <returns>A URI reference. The default is <see langword="String.Empty" />.Optional.</returns>
|
||||
// Token: 0x1700060B RID: 1547
|
||||
// (set) Token: 0x060015CA RID: 5578 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700060B")]
|
||||
[XmlAttribute("source", DataType = "anyURI")]
|
||||
public string Source
|
||||
{
|
||||
[Token(Token = "0x60015CA")]
|
||||
[Address(RVA = "0x41CFF0", Offset = "0x41BFF0", VA = "0x18041CFF0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the <see langword="xml:lang" /> attribute. This serves as an indicator of the language used in the contents.</summary>
|
||||
/// <returns>The <see langword="xml:lang" /> attribute.Optional.</returns>
|
||||
// Token: 0x1700060C RID: 1548
|
||||
// (set) Token: 0x060015CB RID: 5579 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700060C")]
|
||||
[XmlAttribute("xml:lang")]
|
||||
public string Language
|
||||
{
|
||||
[Token(Token = "0x60015CB")]
|
||||
[Address(RVA = "0x82D910", Offset = "0x82C910", VA = "0x18082D910")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets an array of <see langword="XmlNodes" /> that represents the documentation child nodes.</summary>
|
||||
/// <returns>The array that represents the documentation child nodes.</returns>
|
||||
// Token: 0x1700060D RID: 1549
|
||||
// (set) Token: 0x060015CC RID: 5580 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700060D")]
|
||||
[XmlAnyElement]
|
||||
[XmlText]
|
||||
public XmlNode[] Markup
|
||||
{
|
||||
[Token(Token = "0x60015CC")]
|
||||
[Address(RVA = "0x55BCF0", Offset = "0x55ACF0", VA = "0x18055BCF0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaDocumentation" /> class.</summary>
|
||||
// Token: 0x060015CD RID: 5581 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60015CD")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public XmlSchemaDocumentation()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000BEF RID: 3055
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x4000BEF")]
|
||||
private string source;
|
||||
|
||||
// Token: 0x04000BF0 RID: 3056
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x4000BF0")]
|
||||
private string language;
|
||||
|
||||
// Token: 0x04000BF1 RID: 3057
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x4000BF1")]
|
||||
private XmlNode[] markup;
|
||||
|
||||
// Token: 0x04000BF2 RID: 3058
|
||||
[Token(Token = "0x4000BF2")]
|
||||
private static XmlSchemaSimpleType languageType;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user