You are here: Start » FIL.NET » Function Reference » System » HTTP » FIL.Http_DecodeURL

FIL.Http_DecodeURL

Converts text from URL friendly text to a string.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void Http_DecodeURL
(
	string inEncoded,
	out string outDecoded
)

Parameters

Name Type Range Default Description
inEncodedstringPercent encoded string.
outDecodedstringDecoded string.

Description

Filter decodes an percent-encoded string to the raw text.

More details can be found in Percent-encoding standard.

Examples

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

See also