Why do some SharePoint examples use

using (SPSite site = new SPSite(SPContext.Current.Web.Url))
{
    ...
}

and not just simply?

SPSite site = SPContext.Current.Web.Site;
...

Update

I think I have narrowed the question down to the following:

It seems that I should not use SPContent.Current directly, unless I am certain, that my code runs inside SharePoint. But when would that not be true?

link|improve this question

1  
Take a look at a similar question from me: sharepoint.stackexchange.com/questions/20192/… – moontear Nov 8 '11 at 15:01
Thanks for the link. I have updated my question. – Jan Aagaard Nov 8 '11 at 15:07
1  
On bigger projects you sometimes have external utilities not running in SharePoint. Another example are unit tests which also don't run in SharePoint. If you are simply developing visual webparts and don't unit test - your code runs in SP. – moontear Nov 8 '11 at 15:18
feedback

2 Answers

up vote 3 down vote accepted

Take a look at the best practices documentation on disposing objects in SharePoint 2010 from Microsoft, however there are opposing views.

There are a few key takeaways for SharePoint projects:

  • Always dispose your SPWeb / SPSite objects --> memory leaks
  • Make use of SPContext.Current... when you are sure your code is running in a SharePoint context
    • Unit Tests mean no Sharepoint context
    • External utilities mean no Sharepoint context
    • Powershell means no SharePoint context (e.g. activating a feature with feature receiver might fail)
  • Do not dispose SPContext.Current... but create your own object (again using)

You might have problems with consistency with your multiple SP.. objects.

In the end SPSite site = SPContext.Current.Web.Site; is fine in some instances, but you do not have control over this site object - that might be the problem. If you go for new SPSite(...) you will always have your SPSite and not something SharePoint created and managed for you.

Personally I almost always go for the using structure so all objects are disposed properly afterwards. When I do quick and dirty solutions I use SPContext.Current.Web without disposing.

link|improve this answer
feedback

It depends on the context in which your code runs. For instance, you need to create a new SPSite instance if you are running within a RunWithElevatedPrivileges block.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.