Performs URL encoding on a string.

Namespace: MonoSoftware.Web
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public static string UrlEncode(
	string encode
)
Visual Basic
Public Shared Function UrlEncode ( 
	encode As String
) As String
Visual C++
public:
static String^ UrlEncode(
	String^ encode
)
F#
static member UrlEncode : 
        encode : string -> string 

Parameters

encode
Type: System..::..String
String to encode.

Return Value

Type: String
URL-encoded string.

See Also