Multiple choice technology

Choose the asynchronous events below (Multiple Selection)

  1. ItemDeleted

  2. ItemDeleting

  3. ItemUpdated

  4. ItemUpdating

Reveal answer Fill a bubble to check yourself
A,C Correct answer
Explanation

SharePoint event receivers use naming conventions: '-ing' suffix (ItemDeleting, ItemUpdating) are synchronous events that run BEFORE the action and can cancel it. '-ed' suffix (ItemDeleted, ItemUpdated) are asynchronous events that run AFTER the action completes.