Data.Cloud.CloudAPI.TCloudHTTP.Put

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

function Put(AURL: string; Source: TStream): string; overload;
function Put(AURL: string): string; overload;

C++

System::UnicodeString __fastcall Put(System::UnicodeString AURL, System::Classes::TStream* Source)/* overload */;
System::UnicodeString __fastcall Put(System::UnicodeString AURL)/* overload */;

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
function public
Data.Cloud.CloudAPI.pas
Data.Cloud.CloudAPI.hpp
Data.Cloud.CloudAPI TCloudHTTP


Beschreibung

Sendet einen PUT-Befehl mit einer Anforderung ohne Inhalt.

Es gibt zwei überladene Methoden Put. Für die erste können Sie den Quell-Stream für die Anforderung bereitstellen.

Put gibt den Antwort-Stream im String-Format zurück.

Die folgende Tabelle gibt die Bedeutung der Parameter an:

Parameter Beschreibung

AURL

URL, an den der PUT-Befehl gesendet wird.

Source

Quell-Stream (TStream) für PUT-Anforderungen


Siehe auch