You are here: Start » AVL.NET » Function Reference » System » HTTP » AVL.Http_EncodeURL

AVL.Http_EncodeURL

Converts string to URL friendly text.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void Http_EncodeURL
(
	string inDecoded,
	out string outEncoded
)

Parameters

Name Type Range Default Description
inDecodedstringString to be encoded.
outEncodedstringPercent-encoded string.

Description

Filter converts a raw text to the format which can be used in a GET or POST request. Most of white spaces are converted to percent encoded characters.

More details can be found in Percent-encoding standard.

Examples

String Node = 1+2+3 will be encoded to Node%20%3D%201%2B2%2B3.

See also