29 lines
809 B
C#
29 lines
809 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Schema
|
|
{
|
|
/// <summary>Enumerations for the content model of the complex type. This represents the content in the post-schema-validation information set (infoset).</summary>
|
|
// Token: 0x02000111 RID: 273
|
|
[Token(Token = "0x2000111")]
|
|
public enum XmlSchemaContentType
|
|
{
|
|
/// <summary>Text-only content.</summary>
|
|
// Token: 0x0400041A RID: 1050
|
|
[Token(Token = "0x400041A")]
|
|
TextOnly,
|
|
/// <summary>Empty content.</summary>
|
|
// Token: 0x0400041B RID: 1051
|
|
[Token(Token = "0x400041B")]
|
|
Empty,
|
|
/// <summary>Element-only content.</summary>
|
|
// Token: 0x0400041C RID: 1052
|
|
[Token(Token = "0x400041C")]
|
|
ElementOnly,
|
|
/// <summary>Mixed content.</summary>
|
|
// Token: 0x0400041D RID: 1053
|
|
[Token(Token = "0x400041D")]
|
|
Mixed
|
|
}
|
|
}
|