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

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

public static GetCookieValue ( string key ) : string
key string
Результат string
        public static string GetCookieValue(string key)
        {
            return IsCookieExist(key) ? HttpContext.Current.Request.Cookies[key].Value : string.Empty;
        }