using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Specifies the amount of input or output checking that and objects perform.
// Token: 0x0200000D RID: 13
[Token(Token = "0x200000D")]
public enum ConformanceLevel
{
/// The or object automatically detects whether document-level or fragment-level checking should be performed, and does the appropriate checking. If you're wrapping another or object, the outer object doesn't do any additional conformance checking. Conformance checking is left up to the underlying object.See the and properties for details on how the compliance level is determined.
// Token: 0x04000024 RID: 36
[Token(Token = "0x4000024")]
Auto,
/// The XML data is a well-formed XML fragment, as defined by the W3C.
// Token: 0x04000025 RID: 37
[Token(Token = "0x4000025")]
Fragment,
/// The XML data complies with the rules for a well-formed XML 1.0 document, as defined by the W3C.
// Token: 0x04000026 RID: 38
[Token(Token = "0x4000026")]
Document
}
}