共用方式為


SPSite.PortalUrl property

取得或設定入口網站的 URL。(唯讀在沙箱化解決方案中。)

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

Syntax

'宣告
Public Property PortalUrl As String
    Get
    Set
'用途
Dim instance As SPSite
Dim value As String

value = instance.PortalUrl

instance.PortalUrl = value
public string PortalUrl { get; set; }

Property value

Type: System.String
字串,包含 URL,結束以正斜線 ("/"),以在"http://Portal_Name/"。

備註

PortalUrl屬性必須設定和PortalName屬性,以連線到入口網站。PortalUrl屬性必須是指定的第一個和PortalName屬性第二個。

Examples

下列程式碼範例會使用PortalUrl屬性,來建立連線至入口網站,從指定的站台集合。

Using oSiteCollection As New SPSite("http://Server_Name/sites/Site_Name")
    oSiteCollection.PortalUrl = "http://Portal_Site/"
    oSiteCollection.PortalName = "Portal_Name"
End Using
using (SPSite oSiteCollection = new SPSite("http://Server_Name/sites/Site_Name"))
{
    oSiteCollection.PortalUrl = "http://Portal_Site/";
    oSiteCollection.PortalName = "Portal_Name";
}
注意事項注意事項

某些物件實作IDisposable介面,並且您必須避免之後不再需要保留這些物件在記憶體中。良好的程式碼撰寫方式的相關資訊,請參閱Disposing Objects

請參閱

參照

SPSite class

SPSite members

Microsoft.SharePoint namespace