ALE.Web.AleContext.AleContext C# (CSharp) Method

AleContext() public method

public AleContext ( HttpContext innerContext ) : System
innerContext System.Web.HttpContext
return System
        public AleContext(HttpContext innerContext)
        {
            if (innerContext == null) throw new ArgumentNullException("innerContext");
            InnerContext = innerContext;
            Response = new AleResponse(innerContext.Response, this);
            Request = new AleRequest(innerContext.Request, this);
        }