Never Dispose Objects from SPContext.Current

Last updated by Brook Jeynes [SSW] 10 months ago.See history

Disposing objects in SharePoint is important, but never do it with objects from SPContext.Current. SharePoint will manage disposing these objects itself.

using (SPWeb web =  SPContext.Current.Site.RootWeb)
{
    //do something here
}

Figure: Using statement is trying to dispose current site object - it will cause exception

Just simply use "Current" object directly.

SPWeb webSPContext.Current.Site.RootWeb;
//do something here

Figure: Use Current objects directly - don't need to dispose them

We open source. Powered by GitHub