Converts a url to its equivalent System.String representation encoded with base 64 digits.

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

Syntax

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

Parameters

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

Return Value

Type: String
URL-encoded string.

See Also