38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Schema
|
|
{
|
|
/// <summary>Specifies the order and structure of the child elements of a type.</summary>
|
|
// Token: 0x02000220 RID: 544
|
|
[Token(Token = "0x2000220")]
|
|
public abstract class XmlSchemaContentModel : XmlSchemaAnnotated
|
|
{
|
|
/// <summary>Gets or sets the content of the type.</summary>
|
|
/// <returns>Provides the content of the type.</returns>
|
|
// Token: 0x170005FF RID: 1535
|
|
// (get) Token: 0x060015A9 RID: 5545
|
|
// (set) Token: 0x060015AA RID: 5546
|
|
[Token(Token = "0x170005FF")]
|
|
[XmlIgnore]
|
|
public abstract XmlSchemaContent Content
|
|
{
|
|
[Token(Token = "0x60015A9")]
|
|
[Address(Slot = "14")]
|
|
get;
|
|
[Token(Token = "0x60015AA")]
|
|
[Address(Slot = "15")]
|
|
set;
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaContentModel" /> class.</summary>
|
|
// Token: 0x060015AB RID: 5547 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60015AB")]
|
|
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
|
protected XmlSchemaContentModel()
|
|
{
|
|
}
|
|
}
|
|
}
|