Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/a57e3878fbbd0d87d070d7978ba55aee to your computer and use it in GitHub Desktop.
Save hbulens/a57e3878fbbd0d87d070d7978ba55aee to your computer and use it in GitHub Desktop.
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