user3964307
user3964307

Reputation:

EWS: Stop tracking changes while programmatically editing appointments

I'm editing Outlook appointments programmatically, synchronizing them with "appointments" of another software.

Next time my interface runs and I get the changelog, I don't want to get the changes I made programmatically on an Outlook appointment. Is there a way to stop tracking these changes?

Upvotes: 1

Views: 146

Answers (1)

Mimi Gentz
Mimi Gentz

Reputation: 1658

Have you read the Filtered synchronization section in Mailbox synchronization and EWS in Exchange? I think the only way to ignore the changes your programmatic changes is to do a sync of user changes immediately before running your programmatic changes, then run your program, then do a SyncFolderItems repeatedly and discard the changes (don't do anything with them). That way, the next time you sync changes, you'll only get user created changes that you need to process.

Upvotes: 1

Related Questions