Позиция Актуализиране или т Updated Event в SharePoint 2007 се среща два пъти, ако се изисква закупуването опция е разрешена за документ библиотека.
Намерих следното действие от Microsoft Support за този въпрос.
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.
}
else
{
//This is triggered by events other than check-in action.
}