Пункт Абнаўленне або Item Абноўлена падзея ў SharePoint 2007 сустракаецца двойчы, калі гэтага патрабуюць праверку опцыя ўключана для бібліятэкі дакументаў.
Я знайшоў наступны абыходны шлях ад Microsoft для вырашэння ўзніклай праблемы.
Check the value of vti_sourcecontrolcheckedoutby
у BeforeProperties і AfterProperties, if the both values are null then the event is triggered by check in else the event is triggered by other actions.
калі (properties.AfterProperties[“vti_sourcecontrolcheckedoutby”] == null && properties.BeforeProperties[“vti_sourcecontrolcheckedoutby”] != NULL)
{
//This is when the update event is triggered by check-in.
}
яшчэ
{
//This is triggered by events other than check-in action.
}