|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Xml
{
public enum ConformanceLevel
{
// With conformance level Auto an XmlReader or XmlWriter automatically determines whether in incoming XML is an XML fragment or document.
Auto = 0,
// Conformance level for XML fragment. An XML fragment can contain any node type that can be a child of an element,
// plus it can have a single XML declaration as its first node
Fragment = 1,
// Conformance level for XML document as specified in XML 1.0 Specification
Document = 2,
}
}
|