Sharepoint 2010: BeforeProperties and AfterProperties in Event Receivers!
Event Receiver is a great feature for Sharepoint 2010, but I spent many time to discover how Properties works..
Especially BeforeProperties and AfterProperties..
I found a great post with resume all available values. Here table and below the link!
http://www.synergyonline.com/Blog/Lists/Posts/Post.aspx?ID=122
Especially BeforeProperties and AfterProperties..
I found a great post with resume all available values. Here table and below the link!
http://www.synergyonline.com/Blog/Lists/Posts/Post.aspx?ID=122
These are the values of the properties in List events:
List | BeforeProperties | AfterProperties | properties.ListItem |
ItemAdding | No Value | New Value | Null |
ItemAdded | No Value | New 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 |
And here are the properties available in Library events:
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 |
Comments
Post a Comment