DSAzure.TAzureHTTP.Put
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: DSAzure.pas DSAzure.hpp
| |
Unit: DSAzure | |
Parent: TAzureHTTP |
Delphi
function Put(AURL: string): string; overload;
C++
HIDESBASE System::UnicodeString __fastcall Put(System::UnicodeString AURL)/* overload */;
inline System::UnicodeString __fastcall Put(System::UnicodeString AURL, System::Classes::TStream* ASource){ return Idhttp::TIdCustomHTTP::Put(AURL, ASource); }
inline void __fastcall Put(System::UnicodeString AURL, System::Classes::TStream* ASource, System::Classes::TStream* AResponseContent){ Idhttp::TIdCustomHTTP::Put(AURL, ASource, AResponseContent); }
Description
Sends a PUT
command type request.
The Put method sends a PUT
command type request. Put returns the server response for the issued command.
AURL
is the URL (Uniform Resource Locator) where the PUT
command is sent.