Liefert das Ergebnis von HTTPUploadFile zurueck.
Signatur #
function HTTPUploadFile(URL: String; Header: String; Method: String; FileSource: String; FileResponse: String; Username: String; Password: String): String;
Parameter #
| Name | Typ | Modifier | Beschreibung |
|---|---|---|---|
URL |
String |
value |
Parameter URL der Scriptfunktion HTTPUploadFile. |
Header |
String |
value |
Parameter Header der Scriptfunktion HTTPUploadFile. |
Method |
String |
value |
Parameter Method der Scriptfunktion HTTPUploadFile. |
FileSource |
String |
value |
Parameter FileSource der Scriptfunktion HTTPUploadFile. |
FileResponse |
String |
value |
Parameter FileResponse der Scriptfunktion HTTPUploadFile. |
Username |
String |
value |
Parameter Username der Scriptfunktion HTTPUploadFile. |
Password |
String |
value |
Parameter Password der Scriptfunktion HTTPUploadFile. |
Rueckgabewert #
String – Rueckgabewert der Scriptfunktion HTTPUploadFile.
Beschreibung #
Die Implementierung ruft intern HTTPUploadFile auf.
Beispiele #
Beispiel #
var
ResultValue: String;
begin
ResultValue := HTTPUploadFile('', '', '', '', '', '', '');
end;
Kategorie: HTTP / Web
