Atomia.Web.Plugin.PublicOrder.Controllers.ErrorController.NotFound C# (CSharp) Method

NotFound() private method

private NotFound ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult NotFound()
        {
            Response.StatusCode = (int)HttpStatusCode.NotFound;
            Response.TrySkipIisCustomErrors = true;
            return View();
        }