Lumisoft登录验证

时间:2015-01-27 01:05:22

标签: c# lumisoft

使用lumisoft登录Outlook后,有没有办法检索登录信息?这是我的代码

private void Connect()
        {
            string m_pUserName = "user@hotmail.com";
            string m_pPassword = "pass";
            string m_pServer = "imap-mail.outlook.com";


            IMAP_Client imap = new IMAP_Client();
            try
            {
                imap.Logger = new Logger();
                imap.Connect(m_pServer, 993, true);

                imap.Login(m_pUserName, m_pPassword);

                MessageBox.Show(imap.GreetingText);

            }
            catch (Exception x)
            {
                MessageBox.Show(this, "IMAP server returned: " + x.Message + " !", "Error:", MessageBoxButtons.OK, MessageBoxIcon.Error);
                imap.Dispose();
            }

        }

如果凭据错误,最终会抛出异常。 但是,如果它们是正确的,我想要检索GreetingText以外的信息。例如,登录用户的电子邮件和密码等。

任何提示?

1 个答案:

答案 0 :(得分:0)

我搜索的大多数信息都不在IMAP_Client.AuthenticatedUserIdentity imap.AuthenticatedUserIdentity {{1}} {{1}} 会给我我要找的大部分东西。 谢谢,对不起麻烦。