SharePoint Event Receiver BeforeProperties, AfterProperties values

Here are the results for a list:

List BeforeProperties AfterProperties properties.ListItem
ItemAdding No value No value Null
ItemAdded No value No value New value
ItemUpdating No value Changed value Original value
ItemUpdated No value Changed value Changed value
ItemDeleting No value No value Original value
ItemDeleted No value No value Null

No value means that column value in the hash table was not available.
New value means that the correct value for the column was available.
Changed value means that the correct updated value was available.
Original value means that the correct original value was available.

Here is the same test against a document library:

Library BeforeProperties AfterProperties properties.ListItem
ItemAdding No value No value Null
ItemAdded No value No value New value
ItemUpdating Original value Changed value Original value
ItemUpdated Original value Changed value Changed value
ItemDeleting No value No value Original value
ItemDeleted No value No value Null

Properties.ListItem refers the the current value for the list item at that point in the event.  Null means that the item is not available.  My analysis yields the following results:

The AfterProperties return an int value only for every field type that uses indexed values (Choice fields, Lookup fields) when invoked in an ItemUpdating/ItemAdding event, unless they allow multiple values.

This entry was posted in Event Receiver, SharePoint 2010. Bookmark the permalink.

Leave a comment