Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/Schema/XmlSchemaSimpleContent.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

49 lines
1.9 KiB
C#

using System;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the <see langword="simpleContent" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class is for simple and complex types with simple content model.</summary>
// Token: 0x02000254 RID: 596
[Token(Token = "0x2000254")]
public class XmlSchemaSimpleContent : XmlSchemaContentModel
{
/// <summary>Gets one of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleContentRestriction" /> or <see cref="T:System.Xml.Schema.XmlSchemaSimpleContentExtension" />.</summary>
/// <returns>The content contained within the <see langword="XmlSchemaSimpleContentRestriction" /> or <see langword="XmlSchemaSimpleContentExtension" /> class.</returns>
// Token: 0x1700068A RID: 1674
// (get) Token: 0x0600171F RID: 5919 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06001720 RID: 5920 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700068A")]
[XmlElement("restriction", typeof(XmlSchemaSimpleContentRestriction))]
[XmlElement("extension", typeof(XmlSchemaSimpleContentExtension))]
public override XmlSchemaContent Content
{
[Token(Token = "0x600171F")]
[Address(RVA = "0x4936E0", Offset = "0x4926E0", VA = "0x1804936E0", Slot = "14")]
get
{
return null;
}
[Token(Token = "0x6001720")]
[Address(RVA = "0x55BCE0", Offset = "0x55ACE0", VA = "0x18055BCE0", Slot = "15")]
set
{
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleContent" /> class.</summary>
// Token: 0x06001721 RID: 5921 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001721")]
[Address(RVA = "0x42BA20", Offset = "0x42AA20", VA = "0x18042BA20")]
public XmlSchemaSimpleContent()
{
}
// Token: 0x04000C82 RID: 3202
[FieldOffset(Offset = "0x50")]
[Token(Token = "0x4000C82")]
private XmlSchemaContent content;
}
}