Difference between revisions of "GetHTTPPage"
From SCAR Divi Manual
(Created page with "==Definition== <func>function GetHTTPPage(const iHttp: Integer; const URL: AnsiString): AnsiString;</func> ==Availability== SCAR Divi 3.00 > Current ==Description== This functi...") |
|||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
− | < | + | <source lang="scar" lines="false"> |
+ | function GetHTTPPage(const iHttp: Integer; const URL: AnsiString): AnsiString; | ||
+ | </source> | ||
==Availability== | ==Availability== | ||
Line 6: | Line 8: | ||
==Description== | ==Description== | ||
− | + | Gets the content of a webpage specified by '''URL''' from an open HTTP connection specified by '''iHttp'''. | |
==Example== | ==Example== | ||
Line 12: | Line 14: | ||
var | var | ||
i: Integer; | i: Integer; | ||
+ | |||
begin | begin | ||
i := InitializeHTTPClient(True, True); | i := InitializeHTTPClient(True, True); | ||
Line 26: | Line 29: | ||
*[[PostHTTPPageEx]] | *[[PostHTTPPageEx]] | ||
*[[InitializeHTTPClient]] | *[[InitializeHTTPClient]] | ||
− | |||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:Internet Functions]] | [[Category:Internet Functions]] | ||
+ | [[Category:HTTP Functions]] |
Latest revision as of 09:56, 4 July 2011
Definition
function GetHTTPPage(const iHttp: Integer; const URL: AnsiString): AnsiString;
Availability
SCAR Divi 3.00 > Current
Description
Gets the content of a webpage specified by URL from an open HTTP connection specified by iHttp.
Example
var i: Integer; begin i := InitializeHTTPClient(True, True); try WriteLn(GetHTTPPage(i, 'http://www.google.com/')); finally FreeHTTPClient(i); end; end.