SPUtility.GetFullUrl method

Returns the absolute Universal Resource Locator (URL) for the specified server-relative URL.

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

Syntax

'Declaration
Public Shared Function GetFullUrl ( _
    Site As SPSite, _
    WebUrl As String _
) As String
'Usage
Dim Site As SPSite
Dim WebUrl As String
Dim returnValue As String

returnValue = SPUtility.GetFullUrl(Site, _
    WebUrl)
public static string GetFullUrl(
    SPSite Site,
    string WebUrl
)

Parameters

Return value

Type: System.String
A string that contains the absolute URL.

Remarks

If the specified site is running on a non-default port, the port number will be included in the returned URL. For example, if the site is on port 81 and "/documents/File_Name.aspx" is passed as the WebUrl value, the returned URL will be in the form "http://Server_Name:81/documents/File_Name.aspx".

See also

Reference

SPUtility class

SPUtility members

Microsoft.SharePoint.Utilities namespace