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