Tagged Questions

3
votes
3answers
690 views

SharePoint SPSite Disposing

The scenario I have, is in the Execute method of a SPJobDefinition I want to go through every SPSite in the web application. So I have the following code: foreach (SPSite site in ...
2
votes
3answers
208 views

Should I dispose of this SPWeb?

I'm hoping someone can help me out. I need to get the root web of the current site from the SPContext. It's easily done with the following SPContext.Current.Site.RootWeb I'm comfortable with the ...