Метод SPSite.Close

Closes the site collection and releases resources.

Пространство имен:  Microsoft.SharePoint
Сборка:  Microsoft.SharePoint (в Microsoft.SharePoint.dll)

Синтаксис

'Декларация
Public Sub Close
'Применение
Dim instance As SPSite

instance.Close()
public void Close()

Замечания

Calling the Close method has the same effect as calling the Dispose method. Use the Close method to close the SPSite object and release resources when you are finished using the object. Do not reuse the object or objects that are obtained through the object after it is closed.

If you create an SPSite object, you can use the Close method to close the object. However, if you have a reference to a shared resource, such as when the object is provided by the SPControl.GetContextSite method or Site property (for example, SPContext.Current.Site), do not use the Close method to close the object, but instead allow SharePoint Foundation or your portal application to manage the object. For more information about object disposal, see Disposing Objects.

Примеры

The following code example illustrates how to use the Close method.

Dim siteCollection As New SPSite("http://" + System.Environment.MachineName)
siteCollection.Close() 
SPSite oSiteCollection = new SPSite("http://" + System.Environment.MachineName);
oSiteCollection.Close();   // use the Using directive instead

См. также

Справочные материалы

SPSite класс

Элементы SPSite

Пространство имен Microsoft.SharePoint

Другие ресурсы

Disposing Objects