SPSite.Port Property
Gets the port number that is used for input and output on the virtual server that contains the site collection.
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
The following code example displays the port number for the specified site collection in a console application.
using (SPSite oSiteCollection = new SPSite("http://" + System.Environment.MachineName)) { Console.WriteLine("port: " + oSiteCollection.Port.ToString()); }
Note |
|---|
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. |
Note