Decodes a percent-encoded string.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Parameters
- urlFragment
- Type: System String
The text to decode; this is usually a portion of a Url.
Return Value
The decoded text.Remarks
For more information about percent-encoding, refer to RFC 3986.
Examples
string decoded = Coder.UrlDecode("search%3Fq%3Dcamera"); // decoded == search?q=camera
See Also