<PackageReference Include="NETStandard.Library" Version="2.0.1" />

System.Xml.XmlTextReader

namespace System.Xml { public class XmlTextReader : XmlReader, IXmlLineInfo, IXmlNamespaceResolver { public DtdProcessing DtdProcessing { get; set; } public Encoding Encoding { get; } public EntityHandling EntityHandling { get; set; } public int LineNumber { get; } public int LinePosition { get; } public bool Namespaces { get; set; } public bool Normalization { get; set; } public bool ProhibitDtd { get; set; } public WhitespaceHandling WhitespaceHandling { get; set; } public XmlResolver XmlResolver { set; } protected XmlTextReader(); public XmlTextReader(Stream input); public XmlTextReader(Stream input, XmlNameTable nt); public XmlTextReader(Stream xmlFragment, XmlNodeType fragType, XmlParserContext context); public XmlTextReader(TextReader input); public XmlTextReader(TextReader input, XmlNameTable nt); public XmlTextReader(string url); public XmlTextReader(string url, Stream input); public XmlTextReader(string url, Stream input, XmlNameTable nt); public XmlTextReader(string url, TextReader input); public XmlTextReader(string url, TextReader input, XmlNameTable nt); public XmlTextReader(string url, XmlNameTable nt); public XmlTextReader(string xmlFragment, XmlNodeType fragType, XmlParserContext context); protected XmlTextReader(XmlNameTable nt); public IDictionary<string, string> GetNamespacesInScope(XmlNamespaceScope scope); public TextReader GetRemainder(); public bool HasLineInfo(); public int ReadBase64(byte[] array, int offset, int len); public int ReadBinHex(byte[] array, int offset, int len); public int ReadChars(char[] buffer, int index, int count); public void ResetState(); } }