Example #1
0
        public static new bool RememberAuthenticate()
        {
            BasicPassport bp = new SimplePassport();

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

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

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

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

            bp.Remember(uname, hash);
        }