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