문제

If I assign SPContext.Current.Site.OpenWeb().Title to a string, do I need to dispose of it (if possible)?

string title = SPContext.Current.Site.OpenWeb().Title;

I'm still a little fuzzy on when to dispose of sp objects, so I always dispose of my SPWeb and SPSite objects... But, if I don't assign the statement above to an object first, is there any disposing I need to do? I also understand that there are certain cases where using Current eliminates the need to dispose.

Thanks.

도움이 되었습니까?

해결책

This is a very important topic that is covered well in the following resources:

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top