I am trying to get the RDOFolder Path, It is possible in Interop.Outlook by coding MAPIFolder.FolderPath
string path = rdoFolder.FolderPath
I am trying to get the RDOFolder Path, It is possible in Interop.Outlook by coding MAPIFolder.FolderPath
string path = rdoFolder.FolderPath
Both classes provide the FolderPath
property:
It is up to you which one is to choose.
FolderPath
property is implemented by the IRDOFolder2
interface (derived from RDOFolder
).
Try to cast rdoFolder
variable to IRDOFolder2