0

下面的代码显示“341”,但是在我的框中有超过 2000 条消息,我不知道如何访问它们。


        using (Pop3Client client = new Pop3Client())
        {
            bool useSsl = true;
            client.Connect("pop.gmail.com", 995, useSsl);
            client.Authenticate("myusername", "mypassword");

            int messageCount = client.GetMessageCount();
            Console.WriteLine(messageCount);
        }

这个 341 号码是指我邮箱中最旧的 341 条消息,我看不到任何其他消息。在我在 gmail.com 上的邮箱设置中,我对所有邮件都打开了 Pop3,但这没有任何效果。当我使用 TcpClient 和 SslStream 类时,我得到了相同的结果。您能否提出任何想法,我如何才能完全访问我的邮箱消息?

4

0 回答 0