Bloom.XmlHtmlConverter.GetXmlDomFromHtmlFile C# (CSharp) Method

GetXmlDomFromHtmlFile() public static method

public static GetXmlDomFromHtmlFile ( string path, bool includeXmlDeclaration = false ) : XmlDocument
path string
includeXmlDeclaration bool
return System.Xml.XmlDocument
        public static XmlDocument GetXmlDomFromHtmlFile(string path, bool includeXmlDeclaration = false)
        {
            return GetXmlDomFromHtml(RobustFile.ReadAllText(path), includeXmlDeclaration);
        }