DeleteCurrentOccurrence method

void DeleteCurrentOccurrence(
  1. DeleteMode deleteMode
)
Deletes the current occurrence of a recurring task. After the current occurrence isdeleted, the task represents the next occurrence. Developers should call Load to retrieve the new property values of the task. Calling this method results in a call to EWS. The deletion mode.

Implementation

void DeleteCurrentOccurrence(DeleteMode deleteMode) {
  this.InternalDelete(
      deleteMode, null, AffectedTaskOccurrence.SpecifiedOccurrenceOnly);
}