This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,37 @@
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()
{
}
}
}