This is a different Url Encode implementation since the default .NET one outputs the percent encoding in lower case. While this is not a problem with the percent encoding spec, it is used in upper case throughout OAuth

Namespace: DotNetNuke.Services.Authentication.OAuth
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public static string UrlEncode(
	string value
)
Visual Basic
Public Shared Function UrlEncode ( 
	value As String
) As String

Parameters

value
Type: System..::..String
The value to Url encode

Return Value

Returns a Url encoded string

See Also