Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

25 lines
1.4 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Specifies the amount of input or output checking that <see cref="T:System.Xml.XmlReader" /> and <see cref="T:System.Xml.XmlWriter" /> objects perform.</summary>
// Token: 0x02000036 RID: 54
[Token(Token = "0x2000036")]
public enum ConformanceLevel
{
/// <summary>The <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.Xml.XmlWriter" /> object automatically detects whether document-level or fragment-level checking should be performed, and does the appropriate checking. If you're wrapping another <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.Xml.XmlWriter" /> object, the outer object doesn't do any additional conformance checking. Conformance checking is left up to the underlying object.See the <see cref="P:System.Xml.XmlReaderSettings.ConformanceLevel" /> and <see cref="P:System.Xml.XmlWriterSettings.ConformanceLevel" /> properties for details on how the compliance level is determined.</summary>
// Token: 0x04000191 RID: 401
[Token(Token = "0x4000191")]
Auto,
/// <summary>The XML data is a well-formed XML fragment, as defined by the W3C.</summary>
// Token: 0x04000192 RID: 402
[Token(Token = "0x4000192")]
Fragment,
/// <summary>The XML data complies with the rules for a well-formed XML 1.0 document, as defined by the W3C.</summary>
// Token: 0x04000193 RID: 403
[Token(Token = "0x4000193")]
Document
}
}