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

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

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

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

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

            bp.Remember(uname, hash);
        }