Aqueduct.Web.CookieManager.GetCookieValue C# (CSharp) Method

GetCookieValue() public static method

public static GetCookieValue ( string key ) : string
key string
return string
        public static string GetCookieValue(string key)
        {
            return IsCookieExist(key) ? HttpContext.Current.Request.Cookies[key].Value : string.Empty;
        }