REST.Client.TCustomRESTRequest.DoPrepareQueryString
Delphi
procedure DoPrepareQueryString(const AParamList: TRESTRequestParameterArray;  AContentType: TRESTContentType; var AURL: string); virtual;
C++
virtual void __fastcall DoPrepareQueryString(const System::DynamicArray<TRESTRequestParameter*> AParamList, Rest::Types::TRESTContentType AContentType, System::UnicodeString &AURL);
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| procedure function | protected | REST.Client.pas REST.Client.hpp | REST.Client | TCustomRESTRequest | 
Description
Encodes the specified list of parameters for a URL and appends those parameters to the specified URL.
Consider the following arguments:
- AParamList: is a list where query parameters are taken from.
- AContentType: TRESTContentType. It is the content type for the body.
- AURL: is appended with all parameters.