SPHttpUtility.UrlKeyValueEncode Method (Guid)
Encodes a GUID for use in a URL query string.
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Syntax
'Declaration
Public Shared Function UrlKeyValueEncode ( _
guidKeyOrValueToEncode As Guid _
) As String
'Usage
Dim guidKeyOrValueToEncode As Guid
Dim returnValue As String
returnValue = SPHttpUtility.UrlKeyValueEncode(guidKeyOrValueToEncode)
public static string UrlKeyValueEncode(
Guid guidKeyOrValueToEncode
)
Parameters
guidKeyOrValueToEncode
Type: System.GuidA System.Guid object that contains the GUID.
Return Value
Type: System.String
The encoded string.
Remarks
Use the UrlKeyValueEncode method to encode a URL that you are constructing instead of passing an existing URL, for example, a URL that was entered by the user.
To encode the specified string for use as an attribute value for URL type attributes, use the HtmlUrlAttributeEncode method.
To encode an HTML string, use the HTMLEncode property.