Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 Rebex 库创建了一个 .net 邮件客户端应用程序,并且想要实现类似“推送邮件”系统的东西,我开始知道 IMAP 允许这称为 IMAP IDLE,任何人都知道如何在我的应用程序,寻找示例。
谢谢
Rebex IMAP 确实支持 IDLE - 使用Imap对象的CheckForUpdates(int duration)方法 - 这指示 IMAP 会话在指定的毫秒数内进入 IDLE 状态。请注意,对于小于 10 毫秒的持续时间值,使用 NOOP 而不是 IDLE。使用 IDLE,您通常希望长时间停留在 IDLE 中。
Imap
CheckForUpdates(int duration)