共用方式為


SPSite.Delete method

Deletes the site collection from the server.

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'宣告
Public Sub Delete
'用途
Dim instance As SPSite

instance.Delete()
public void Delete()

Examples

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

Dim siteCollection As New SPSite("http://" + 
    System.Environment.MachineName + "/sites/Site_Collection")

siteCollection.Delete()
siteCollection.Dispose()
SPSite oSiteCollection = new SPSite("http://" + 
    System.Environment.MachineName + "/sites/Site_Collection");

oSiteCollection.Delete();
oSiteCollection.Dispose();
注意事項注意事項

Certain objects implement the IDisposable interface, and you must avoid retaining these objects in memory after they are no longer needed. For information about good coding practices, see Disposing Objects.

請參閱

參照

SPSite class

SPSite members

Delete overload

Microsoft.SharePoint namespace