Esempio n. 1
0
        public static new bool RememberAuthenticate()
        {
            BasicPassport bp = new SimplePassport();

            return(bp.RememberAuthenticate());
        }
Esempio n. 2
0
        public static new bool FormAuthenticate(string uname, string clientHash, string lastTicket)
        {
            BasicPassport bp = new SimplePassport();

            return(bp.FormAuthenticate(uname, clientHash, lastTicket));
        }
Esempio n. 3
0
        public static new void Logout()
        {
            BasicPassport bp = new SimplePassport();

            bp.Logout();
        }
Esempio n. 4
0
        public static new void Forget()
        {
            BasicPassport bp = new SimplePassport();

            bp.Forget();
        }
Esempio n. 5
0
        public static new void Remember(string uname, string hash)
        {
            BasicPassport bp = new SimplePassport();

            bp.Remember(uname, hash);
        }