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