using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// Represents the 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.
// Token: 0x02000120 RID: 288
[Token(Token = "0x2000120")]
public class XmlSchemaSimpleType : XmlSchemaType
{
/// Initializes a new instance of the class.
// Token: 0x06000896 RID: 2198 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000896")]
[Address(RVA = "0x5D17A0", Offset = "0x5D05A0", VA = "0x1805D17A0")]
public XmlSchemaSimpleType()
{
}
/// Gets or sets one of , , or .
/// One of , , or .
// 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;
}
}