Exemplo n.º 1
0
        public bool Detach()
        {
            CommandSimpleRequest command = new CommandSimpleRequest("disconnect");

            bool success = false;

            m_commandDispatcher.Submit(command);

            if (command.WaitForResponse())
            {
                success = command.m_record.m_bSuccess;
            }

            return(success);
        }
Exemplo n.º 2
0
        public bool showScreenLoginCancel()
        {
            CommandSimpleRequest command = new CommandSimpleRequest("login.loginCancel");

            bool success = false;

            m_commandDispatcher.Submit(command);

            if (command.WaitForResponse())
            {
                success = command.m_record.m_bSuccess;
            }

            return(success);
        }