CsQuery.CQ.CreateFromFile C# (CSharp) Метод

CreateFromFile() публичный статический Метод

Creates a new DOM from an HTML file.
public static CreateFromFile ( string htmlFile ) : CQ
htmlFile string /// The full path to the file ///
Результат CQ
        public static CQ CreateFromFile(string htmlFile)
        {
            using (Stream strm = Support2.GetFileStream(htmlFile))
            {
                return CQ.Create(strm);
            }
        }