BVNetwork.NotFound.Core.Custom404Handler.GetContext C# (CSharp) Метод

GetContext() приватный статический Метод

private static GetContext ( ) : HttpContext
Результат System.Web.HttpContext
        private static HttpContext GetContext()
        {
            var context = HttpContext.Current;
            if (context == null)
            {
                Logger.Debug("No HTTPContext, returning");
            }
            return context;
        }