Choose the asynchronous events below (Multiple Selection)
-
ItemDeleted
-
ItemDeleting
-
ItemUpdated
-
ItemUpdating
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.