0 votes
by (220 points)

Is it possible to creates the new subfolder of the special exchange class ('IPF.Note') in an exchange folder ?

(Rebex.Net.Ews)

Applies to: Rebex Secure Mail

1 Answer

0 votes
by (15.2k points)
selected by
 
Best answer

Hi,

we are sorry. You can create subfolders using Rebex EWS, but you cannot specify "special exchange class" for it.
All newly created subfolders will be of the 'IPF.Note' class, which is default.

Sample of creating subfolders:

var ews = new Ews();
var inboxId = ews.GetFolderId(EwsSpecialFolder.Inbox);
var testId = ews.CreateFolder(inboxId, "Test");
var subTestId = ews.CreateFolder(testId, "Test-sub");
by (220 points)
not always IPF.Note class, but depending on the type of parent folder
by (15.2k points)
Thank you for the clarification how exchange server treats new subfolders.
...