Exemple #1
0
        public AuthenticationInfo GetAuthenticationInfo(string authenticationCookie, string userData)
        {
            if (string.IsNullOrEmpty(authenticationCookie))
            {
                throw new ArgumentException("authenticationCookie");
            }

            AuthenticationInfo ai = EncryptionServices.Decode(authenticationCookie);

            return(ai);
        }