1

我无法使用 ImapX 检索我的电子邮件帐户的文件夹:

 ImapX.ImapClient m_ImapClient = new ImapX.ImapClient( ImapServerAddress, (int) ImapServerPort, System.Security.Authentication.SslProtocols.Ssl3, false);
 m_ImapClient.Connect();
 m_ImapClient.Login( EmailAddress, EmailPassword);
//the two functions above each return true
//this last statement throws an exception:
ImapX.Collections.FolderCollection vFolders = m_ImapClient.Folders;

那就是:

'm_ImapClient.Folders' threw an exception of type 'System.NullReferenceException' ImapX.Collections.CommonFolderCollection {System.NullReferenceException}

出了什么问题,我使用的是 IMAP,ssl,端口 993。ImapX 2。这适用于 993 上的 imap.google.com,但不适用于其他网络服务器。关于为什么会发生这种情况的任何想法?

4

1 回答 1

0

此问题已修复,谢谢!有关详细信息,请参阅问题:成功登录 IMAP 服务器后无法获取邮件文件夹。解析 IMAPX 服务器返回的有关文件夹的信息时出现问题。一些服务器不引用文件夹名称。

于 2013-09-25T17:10:45.080 回答