BVNetwork.NotFound.Core.Custom404Handler.GetContext C# (CSharp) Method

GetContext() private static method

private static GetContext ( ) : HttpContext
return System.Web.HttpContext
        private static HttpContext GetContext()
        {
            var context = HttpContext.Current;
            if (context == null)
            {
                Logger.Debug("No HTTPContext, returning");
            }
            return context;
        }