Internet Direct (Indy)
|
Retrieves the content for an HTTP resource.
procedure Get( AURL: string; AResponseContent: TIdStream; AIgnoreReplies: array of SmallInt ); overload;
Parameters |
Description |
AURL |
The universal resource locator to be retrieved. |
AResponseContent |
Destination for the data retrieved from the URL. |
AIgnoreReplies |
Numeric response codes to ignore as errors. |
Get is an overloaded method used to retrieve the file or data for the resource specified in AURL.
AURL is the fully-qualified location of the resource including the HTTP URL scheme identifier. For example:
sContent := AHttp.Get('http://www.somedomain.org/resource.html');
AResponseContent is the Stream that is the destination for data retrieved from the specified URL. For example:
sContent := AHttp.Get(AUrl, AResponseContent, []);
AIgnoreReplies is an array with numeric response codes to ignore as errors when handling the HTTP response.
Get calls an overloaded variant of the method to perform the HTTP transfer using a TIdMemoryStream instance to capture the response content. The return value for the method is the String data read from the internal TIdMemoryStream instance.
TIdCustomHTTP.Get
Internet Direct (Indy) version 10.1.5
Copyright © 1993-2006, Chad Z. Hower (aka Kudzu) and the Indy Pit Crew. All rights reserved. Website http://www.indyproject.org. Post feedback to the Indy Documentation newsgroup. |