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;
        }
    }