BuildUrl
- Former user (Deleted)
Owned by Former user (Deleted)
Juli 13, 2016
1 min read
Loading data...
Parameter
(RootUrl, FuncName : String; Parameters : Array of String; const Encoding : TccEncoding = ccENC_Mega) : String;
Beschreibung
Die Funktion generiert aus den angegebenen Parametern eine entsprechende Url.
Mögliche Werte für Encoding sind:
- ccENC_None
- ccENC_Base64
- ccENC_Strong
- ccENC_Mega
- ccENC_DCW
Der Parameter Encoding ist optional. Der Standardwert ist ccENC_Mega.
Beispiel
BuildUrl('https://myserver:8080','Example',['param1=test','param2=more'],ccENC_None); // https://myserver:8080/Example?param1=test¶m2=more