Cassette.Web.CassetteApplication.IsHtmlResponse C# (CSharp) Method

IsHtmlResponse() private method

private IsHtmlResponse ( System.Web.HttpContextBase httpContext ) : bool
httpContext System.Web.HttpContextBase
return bool
        bool IsHtmlResponse(HttpContextBase httpContext)
        {
            return httpContext.Response.ContentType == "text/html" ||
                   httpContext.Response.ContentType == "application/xhtml+xml";
        }