Aqueduct.Web.CookieManager.GetSecureCookieValue C# (CSharp) Méthode

GetSecureCookieValue() public static méthode

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