I would like to populate the list of mailboxes from "Mail" folder of Domino from c# using the above API (Interop.Domino.dll). I have no problems connecting to Notes, accessing the database.It is easy to access all nsf files but i want to access only only nsf files in Mail Folder i.e Mail files.
I am using below code:
while (_localDatabase != null)
{
dbString = _localDatabase.Title;
TreeNode objRootNode = new TreeNode(dbString);
objForm.tvwExchDomain.Nodes.Add(objRootNode);
dbCount = dbCount + 1;
_localDatabase = dir.GetNextDatabase();
}
Kindly suggest me some links or sample code which will make my work simpler. I am using Domino Server 8.5.