Data.Cloud.CloudAPI.TCloudHTTP.Options

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Options(const AURL: string): string; overload;
procedure Options(const AURL: string; AResponseContent: TStream); overload;

C++

System::UnicodeString __fastcall Options(const System::UnicodeString AURL)/* overload */;
void __fastcall Options(const System::UnicodeString AURL, System::Classes::TStream* AResponseContent)/* overload */;

Properties

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

Description

Sends a request to the specified URL using the OPTIONS HTTP method, and returns the response string.

If you specify a stream (AResponseContent), Options fills that stream with the response content as the content is received. For more information, see THTTPClient.Options.

See Also