ChiakiYu.Common.Web.WebHelper.Return304 C# (CSharp) Method

Return304() public static method

返回 StatusCode 304
public static Return304 ( HttpContext httpContext, bool endResponse = true ) : void
httpContext System.Web.HttpContext HttpContext
endResponse bool 是否终止HttpResponse
return void
        public static void Return304(HttpContext httpContext, bool endResponse = true)
        {
            ReturnStatusCode(httpContext, 304, "304 Not Modified", endResponse);
        }