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