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

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

public static GetSecureCookieValue ( string key ) : string
key string
Результат string
        public static string GetSecureCookieValue(string key)
        {
            FormsAuthenticationTicket formsAuthenticationTicket = FormsAuthentication.Decrypt(GetCookieValue(key));
            return formsAuthenticationTicket.UserData;
        }
    }