Actualització d'article o element actualitzat d'esdeveniments en SharePoint 2007 passa dues vegades, si requereixi checkout opció està activada per a la biblioteca de documents.
He trobat la següent solució de Microsoft Suport per a aquest problema.
Check the value of vti_sourcecontrolcheckedoutby
en BeforeProperties i AfterProperties, if the both values are null then the event is triggered by check in else the event is triggered by other actions.
si (properties.AfterProperties[“vti_sourcecontrolcheckedoutby”] == null && properties.BeforeProperties[“vti_sourcecontrolcheckedoutby”] != null)
{
//This is when the update event is triggered by check-in.
}
més
{
//This is triggered by events other than check-in action.
}