SPSite.Port property
包含網站集合的虛擬伺服器上取得用於輸入和輸出的連接埠號碼。
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'宣告
Public ReadOnly Property Port As Integer
Get
'用途
Dim instance As SPSite
Dim value As Integer
value = instance.Port
public int Port { get; }
Property value
Type: System.Int32
32 位元的整數,指出連接埠號碼。
Examples
下列程式碼範例會顯示主控台應用程式中指定的網站集合的連接埠號碼。
Using oSiteCollection As New SPSite("http://" + System.Environment.MachineName)
Console.WriteLine(("port: " + oSiteCollection.Port.ToString()))
End Using
using (SPSite oSiteCollection = new SPSite("http://" +
System.Environment.MachineName))
{
Console.WriteLine("port: " + oSiteCollection.Port.ToString());
}
注意事項 |
---|
某些物件實作IDisposable介面,並且您必須避免之後不再需要保留這些物件在記憶體中。良好的程式碼撰寫方式的相關資訊,請參閱Disposing Objects。 |