<PackageReference Include="Newtonsoft.Json" Version="8.0.2" />

IXmlNode

interface IXmlNode
using System.Collections.Generic; using System.Xml; namespace Newtonsoft.Json.Converters { internal interface IXmlNode { XmlNodeType NodeType { get; } string LocalName { get; } IList<IXmlNode> ChildNodes { get; } IList<IXmlNode> Attributes { get; } IXmlNode ParentNode { get; } string Value { get; set; } string NamespaceUri { get; } object WrappedNode { get; } IXmlNode AppendChild(IXmlNode newChild); } }