1

I am able to get a corresponding RDOFolder from Outlook.MAPIFolder using

RDOFolder f = rdoSession.GetRDOObjectFromOutlookObject(outlookMapiFolder)

rdoSession is initialised with current Outlook session.

How to convert a RDOFolder back to Outlook.MAPIFolder for further processing?

eWilli
  • 107
  • 8
  • I've fixed the problem by reducing the scope of the RDO Objects in my program. Nevertheless i'm interessted, if there is a supported way to do this. – eWilli Jun 03 '16 at 09:56

1 Answers1

2

You can call Namespace.GetFolderFromID(f.EntryID).

Dmitry Streblechenko
  • 62,942
  • 4
  • 53
  • 78