0

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 以外の情報を取得したいと考えています。たとえば、ログインしているユーザーの電子メールとパスワードなどです。

任意のヒント?

4

1 に答える 1