Do not dispose SPWeb returned by SPControl.GetContextWeb |
If SPWeb is obtained from the SharePoint context objects (GetContextWeb method), the calling application should not call the Dispose method on the object.
CheckId | SPC110245 |
---|---|
TypeName | DoNotDisposeSPWebCreatedBySPControlGetContextWeb |
Severity | CriticalWarning |
Type | Assembly |
If the SPWeb object is obtained from the SharePoint context objects (GetContextWeb method), the calling application should not call the Dispose method on the object. Doing so may cause the SharePoint object model to behave unpredictably or fail. This is due to an internal list that is kept in the SPSite and SPWeb objects derived in this way. Internally, the object model enumerates over this list after page completion to dispose of the objects properly. See sample from MSDN:
Bad Practice
{
SPWeb web = SPControl.GetContextWeb(Context);
web.Dispose(); // DO NOT DO THIS.
}
Rule relates to SPDisposeCheckId 'SPDisposeCheckID_210'. To ignore this rule add the attribute '[SPDisposeCheckIgnore(SPDisposeCheckID.SPDisposeCheckID_210, "Caller will dispose")]' to your method.
To suppress this violation in managed code add the following attribute to the method which contains the instruction (available since SPCAF version v5.2). Learn more about SuppressMessage here.
[SuppressMessage("SPCAF.Rules.MemoryDisposalGroup", "SPC110245:DoNotDisposeSPWebCreatedBySPControlGetContextWeb", Justification = "Provide reason for suppression here")]