46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Schema
|
|
{
|
|
/// <summary>Represents the <see langword="restriction" /> element for simple types from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used restricting <see langword="simpleType" /> element.</summary>
|
|
// Token: 0x02000123 RID: 291
|
|
[Token(Token = "0x2000123")]
|
|
public class XmlSchemaSimpleTypeRestriction : XmlSchemaSimpleTypeContent
|
|
{
|
|
/// <summary>Gets or sets the name of the qualified base type.</summary>
|
|
/// <returns>The qualified name of the simple type restriction base type.</returns>
|
|
// Token: 0x17000313 RID: 787
|
|
// (set) Token: 0x0600089E RID: 2206 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x17000313")]
|
|
[XmlAttribute("base")]
|
|
public XmlQualifiedName BaseTypeName
|
|
{
|
|
[Token(Token = "0x600089E")]
|
|
[Address(RVA = "0x5D16F0", Offset = "0x5D04F0", VA = "0x1805D16F0")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeRestriction" /> class.</summary>
|
|
// Token: 0x0600089F RID: 2207 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600089F")]
|
|
[Address(RVA = "0x5D1660", Offset = "0x5D0460", VA = "0x1805D1660")]
|
|
public XmlSchemaSimpleTypeRestriction()
|
|
{
|
|
}
|
|
|
|
// Token: 0x0400044F RID: 1103
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x400044F")]
|
|
private XmlQualifiedName baseTypeName;
|
|
|
|
// Token: 0x04000450 RID: 1104
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4000450")]
|
|
private XmlSchemaObjectCollection facets;
|
|
}
|
|
}
|