SPSite.Exists method (Uri, Boolean)
判斷具有指定之 uri 的網站是否存在。檢查設定 db 快取,此外,檢查內容資料庫,如果checkContentDb是,則為 true。
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'宣告
Public Shared Function Exists ( _
uri As Uri, _
checkContentDb As Boolean _
) As Boolean
'用途
Dim uri As Uri
Dim checkContentDb As Boolean
Dim returnValue As Boolean
returnValue = SPSite.Exists(uri, checkContentDb)
public static bool Exists(
Uri uri,
bool checkContentDb
)
參數
uri
Type: System.Uri站台完全符合、 絕對 url。也就是 https://server/sites/sitename,不 https://server/sites/sitename/subweb/default.aspx
checkContentDb
Type: System.Boolean如果為 true,會深層檢查來查看如果網站集合真的存在於內容資料庫中。否則,只會查詢中設定 db 快取,這可能或可能不是全新的網站。
傳回值
Type: System.Boolean
true 如果網站已經存在。否則,false。