-1

I am trying to get the RDOFolder Path, It is possible in Interop.Outlook by coding MAPIFolder.FolderPath

string path = rdoFolder.FolderPath

Sarfaraz78615
  • 114
  • 1
  • 7

2 Answers2

0

Both classes provide the FolderPath property:

It is up to you which one is to choose.

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45
0

FolderPath property is implemented by the IRDOFolder2 interface (derived from RDOFolder). Try to cast rdoFolder variable to IRDOFolder2

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