Data.DbxHTTPLayer.TDSHTTPClient.Get
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: Data.DbxHTTPLayer.pas Data.DbxHTTPLayer.hpp
| |
Unit: Data.DbxHTTPLayer | |
Parent: TDSHTTPClient |
Delphi
function Get(AURL: string): TDSHTTPResponseStream; virtual; abstract;
C++
virtual TDSHTTPResponseStream* __fastcall Get(System::UnicodeString AURL) = 0 ;
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.