Data.Cloud.CloudAPI.TCloudHTTP.Put

From RAD Studio API Documentation
Jump to: navigation, search

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 */;

Properties

Type Visibility Source Unit Parent
function public
Data.Cloud.CloudAPI.pas
Data.Cloud.CloudAPI.hpp
Data.Cloud.CloudAPI TCloudHTTP

Description

Sends a PUT command with an empty content request.

There are two Put overloaded methods. For the first one you can provide the source stream for the request.

Put returns the response stream in string form.

The following table shows the significance of the parameters:

Parameter Description

AURL

URL where the PUT command is sent

Source

Source TStream for PUT requests


See Also