Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
public class DisabledItemEventsScope : SPItemEventReceiver, IDisposable
{
private bool eventFiringEnabledStatus;
public DisabledItemEventsScope()
{
eventFiringEnabledStatus = base.EventFiringEnabled;
base.EventFiringEnabled = false;
}
#region IDisposable Members
public void Dispose()
{
base.EventFiringEnabled = eventFiringEnabledStatus;
}
#endregion
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment