Files
Apr2020-Cpp2Il-Dump/System.Xml/Schema/XmlSchemaSimpleType.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

50 lines
2.1 KiB
C#

using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the <see langword="simpleType" /> element for simple content from XML Schema as specified by the World Wide Web Consortium (W3C). This class defines a simple type. Simple types can specify information and constraints for the value of attributes or elements with text-only content.</summary>
// Token: 0x02000120 RID: 288
[Token(Token = "0x2000120")]
public class XmlSchemaSimpleType : XmlSchemaType
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> class.</summary>
// Token: 0x06000896 RID: 2198 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000896")]
[Address(RVA = "0x5D17A0", Offset = "0x5D05A0", VA = "0x1805D17A0")]
public XmlSchemaSimpleType()
{
}
/// <summary>Gets or sets one of <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeUnion" />, <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeList" />, or <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeRestriction" />.</summary>
/// <returns>One of <see langword="XmlSchemaSimpleTypeUnion" />, <see langword="XmlSchemaSimpleTypeList" />, or <see langword="XmlSchemaSimpleTypeRestriction" />.</returns>
// Token: 0x17000310 RID: 784
// (get) Token: 0x06000897 RID: 2199 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000898 RID: 2200 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000310")]
[XmlElement("list", typeof(XmlSchemaSimpleTypeList))]
[XmlElement("restriction", typeof(XmlSchemaSimpleTypeRestriction))]
[XmlElement("union", typeof(XmlSchemaSimpleTypeUnion))]
public XmlSchemaSimpleTypeContent Content
{
[Token(Token = "0x6000897")]
[Address(RVA = "0x408890", Offset = "0x407690", VA = "0x180408890")]
get
{
return null;
}
[Token(Token = "0x6000898")]
[Address(RVA = "0x403B30", Offset = "0x402930", VA = "0x180403B30")]
set
{
}
}
// Token: 0x0400044B RID: 1099
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x400044B")]
private XmlSchemaSimpleTypeContent content;
}
}