Click or drag to resize

CefRuntimeUriDecode Method

Unescapes |text| and returns the result. Unescaping consists of looking for the exact pattern "%XX" where each X is a hex digit and converting to the character with the numerical value of those digits (e.g. "i%20=%203%3b" unescapes to "i = 3;"). If |convert_to_utf8| is true this function will attempt to interpret the initial decoded result as UTF-8. If the result is convertable into UTF-8 it will be returned as converted. Otherwise the initial decoded result will be returned. The |unescape_rule| parameter supports further customization the decoding process.

Namespace:  Internal.Xilium.CefGlue
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public static string UriDecode(
	string text,
	bool convertToUtf8,
	CefUriUnescapeRules unescapeRule
)

Parameters

text
Type: SystemString
convertToUtf8
Type: SystemBoolean
unescapeRule
Type: Internal.Xilium.CefGlueCefUriUnescapeRules

Return Value

Type: String
See Also