public CookieManager(HttpContext context) { this._context = context; if (context == null) { this._isStatic = true; _cookieInfo = new CookieInfo(); } else { this._isStatic = false; } }
public CookieManager() { this._context = null; this._isStatic = true; _cookieInfo = new CookieInfo(); }