Pont frissítése vagy Frissítve esemény történik kétszer Dokumentumtár

Pont frissítése vagy pont Frissítve esemény a SharePoint 2007 kétszer előforduló, ha szükséges pénztár az opció engedélyezve van a dokumentumtár.

Találtam a következő megoldás a Microsoft támogatása ebben a kérdésben.

Check the value of vti_sourcecontrolcheckedoutby
A BeforeProperties és AfterProperties, if the both values are null then the event is triggered by check in else the event is triggered by other actions.

ha (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.

}

Hozzászólások lezárva.