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

GetSecureCookieValue() public static method

public static GetSecureCookieValue ( string key ) : string
key string
return string
        public static string GetSecureCookieValue(string key)
        {
            FormsAuthenticationTicket formsAuthenticationTicket = FormsAuthentication.Decrypt(GetCookieValue(key));
            return formsAuthenticationTicket.UserData;
        }
    }