9

谁能告诉我如何使用 imap 或其他方式从 gmail 获取收件箱中未读项目的数量,并将其显示在 C# WinForms 的标签中?

我尝试使用原子提要,但永远无法得到它

如果有帮助,这就是我想要的样子:

收件箱(1)

4

2 回答 2

9

解决了

这是我与 ImapX 组件一起使用的代码:

 ImapX.ImapClient client = new ImapX.ImapClient("imap.gmail.com", 993, true);
        bool result = false;

        result = client.Connection();
        if (result)
            MessageBox.Show("Connection Established");

        result = client.LogIn(textBox1.Text, textBox2.Text);
        if (result)
        {
            MessageBox.Show("Logged in");
            ImapX.FolderCollection folders = client.Folders;
            ImapX.MessageCollection messages = client.Folders["INBOX"].Search("UNSEEN", true); //true - means all message parts will be received from server

            int unread = messages.Count;
            string unseen = unread.ToString();
            button1.Text = unseen;
        }

我只需要将 int 转换为字符串并在按钮中显示字符串(看不见)。感谢quantumSoup 为我指明了正确的方向

于 2010-08-30T02:35:35.520 回答
6

您可能希望找到所有UNSEEN设置了标志的消息。

Imap imap = new Imap();
/* connect, login, etc. */
imap.Connect(...);
/* fill login and select folder code */

List<long> unseenList = imap.SearchFlag(Flag.Unseen);

// now you can get the count from unseeList
int unread = unseenList.Count;
于 2010-08-22T01:14:02.117 回答