共用方式為


SPSite.PortalName property

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

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

Syntax

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

value = instance.PortalName

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

Property value

Type: System.String
字串,包含入口網站的名稱。

備註

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

Examples

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

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