using System; using Cpp2IlInjected; namespace System.Xml { /// Specifies the method used to serialize the output. // Token: 0x0200009A RID: 154 [Token(Token = "0x200009A")] public enum XmlOutputMethod { /// Serialize according to the XML 1.0 rules. // Token: 0x0400045D RID: 1117 [Token(Token = "0x400045D")] Xml, /// Serialize according to the HTML rules specified by XSLT. // Token: 0x0400045E RID: 1118 [Token(Token = "0x400045E")] Html, /// Serialize text blocks only. // Token: 0x0400045F RID: 1119 [Token(Token = "0x400045F")] Text, /// Use the XSLT rules to choose between the and output methods at runtime. // Token: 0x04000460 RID: 1120 [Token(Token = "0x4000460")] AutoDetect } }