我无法使用 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,但不适用于其他网络服务器。关于为什么会发生这种情况的任何想法?