Aqueduct.Web.CookieManager.IsCookieExist C# (CSharp) Метод

IsCookieExist() публичный статический Метод

public static IsCookieExist ( string key ) : bool
key string
Результат bool
        public static bool IsCookieExist(string key)
        {
            HttpCookie httpCookie = HttpContext.Current.Request.Cookies[key];
            return httpCookie != null && !string.IsNullOrEmpty(httpCookie.Value);
        }