આઇટમ સુધારી રહ્યા છે અથવા વસ્તુ શેરપોઈન્ટ માં ઇવેન્ટ સુધારાશે 2007 બે વખત થાય, ચેકઆઉટ જરૂર હોય તો વિકલ્પ દસ્તાવેજ લાઇબ્રેરી માટે સક્રિય થયેલ છે.
હું આ મુદ્દા માટે માઈક્રોસોફ્ટ આધાર માંથી નીચેની ઉકેલ મળી.
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.
}