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