|
//------------------------------------------------------------------------------
// <copyright file="ConformanceLevel.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">helenak</owner>
//------------------------------------------------------------------------------
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,
}
}
|