HttpFileComplete

Family: HTTP · One form

What it does

HttpFileComplete reads FileComplete on a HTTP object. It takes connectionID (an integer), and answers an integer. connectionID is the id of a Connection object, obtained elsewhere in the HTTP family.

Syntax

HttpFileComplete(connectionID integer) → integer

Parameters

NameType
connectionIDinteger

Every form returns

integer

Example · generated

connection = CreateHttpConnection()DO  Print(HttpFileComplete(connection))  Sync()LOOP

CreateHttpConnection is there to give the call something to act on; HttpFileComplete is the line that matters. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.

21 commands in HTTP