Ejemplo n.º 1
0
        public bool AuthorizeUser(string Username, string Password)
        {
            m_Authorized = true;

            // These are in a specific order
            m_AuthBeam              = m_Beam.AccountsLogin(Username, Password);
            m_AuthCDPUser           = m_CDPUser.Auth();
            m_AuthSession           = m_Session.Login(Username, Password).Get();
            m_AuthSessionLoginToken = m_Session.GetLoginToken().Get();

            return(true);
        }