Data.DbxHTTPLayer.TDSHTTPClient.Get

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Get(AURL: string): TDSHTTPResponseStream; virtual; abstract;

C++

virtual TDSHTTPResponseStream* __fastcall Get(System::UnicodeString AURL) = 0 ;

Properties

Type Visibility Source Unit Parent
function public
Data.DbxHTTPLayer.pas
Data.DbxHTTPLayer.hpp
Data.DbxHTTPLayer TDSHTTPClient

Description

Performs a GET query to an HTTP server.

Implement the Get method in descending classes to provide the functionality to perform a GET query to an HTTP server.

The AURL parameter specifies the URL of the query.

Get is expected to return the HTTP response stream.

See Also