System.Net.URLClient.TURI.URLDecode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function URLDecode(const AValue: string; PlusAsSpaces: Boolean = False): string; static; deprecated 'Use TNetEncoding.URL.Decode';

C++

static System::UnicodeString __fastcall URLDecode _DEPRECATED_ATTRIBUTE1("Use TNetEncoding.URL.Decode") (const System::UnicodeString AValue, bool PlusAsSpaces = false);

Properties

Type Visibility Source Unit Parent
function public
System.Net.URLClient.pas
System.Net.URLClient.hpp
System.Net.URLClient TURI

Description

Warning: URLDecode is deprecated. Please use NetEncoding.TNetEncoding.URL.

Performs an URL percent decoding.

The URLDecode method performs an URL percent decoding of the text AValue.

If PlusAsSpaces is True the character + is converted to a white space.

See Also