How to check Mail Read or Unread Property (Lotus Notes) using C#

拈花ヽ惹草 提交于 2019-12-10 10:34:37

问题


I want to check mail read and unread property using C#. i.e want to check whether mail is read or not. (using Domino.dll)


回答1:


The unread marks table is not exposed through the "back-end classes" (which is what you are most likely using with Domino.dll). This is available thorugh the lower level C API - it's a bit more work to deal with, but if you are interested, look at the "NSFDbGetUnreadNoteTable", which takes a database handle and returns a handle to an "IDTable" (essentially, a document collection).

IBM Documentation



来源:https://stackoverflow.com/questions/1592940/how-to-check-mail-read-or-unread-property-lotus-notes-using-c-sharp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!