HtmlAgilityPack.HtmlWeb.IsCacheHtmlContent C# (CSharp) 메소드

IsCacheHtmlContent() 개인적인 메소드

private IsCacheHtmlContent ( string path ) : bool
path string
리턴 bool
        private bool IsCacheHtmlContent(string path)
        {
            string ct = GetContentTypeForExtension(Path.GetExtension(path), null);
            return IsHtmlContent(ct);
        }