I am accessing mail from Lotus notes.
And in order to access "Inbox" i am using below code:
_notesDatabase = _lotusNotesServerSession.GetDatabase(LotusNotesServer, "mail\\" + nsfName, false);
NotesView inbox = _notesDatabase.GetView("($Inbox)");
Similarly for "Drafts".
But here i am specifying name of each view in GetView method. Which is not good coding.
I want to list these views "Inbox","Drafts" programaticaly using C#.
Can anybody give me solution?