Click or drag to resize

CefRuntimeUriEncode Method

Escapes characters in |text| which are unsuitable for use as a query parameter value. Everything except alphanumerics and -_.!~*'() will be converted to "%XX". If |use_plus| is true spaces will change to "+". The result is basically the same as encodeURIComponent in Javacript.

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 UriEncode(
	string text,
	bool usePlus
)

Parameters

text
Type: SystemString
usePlus
Type: SystemBoolean

Return Value

Type: String
See Also