What it does
DeleteHttpConnection deletes Connection on a HTTP object. It takes connectionID (an integer), and returns nothing. connectionID is the id of a Connection object, obtained elsewhere in the HTTP family.
Syntax
DeleteHttpConnection(connectionID integer)Parameters
| Name | Type |
|---|---|
| connectionID | integer |
Every form returns
nothing
Example · generated
connection = CreateHttpConnection()DeleteHttpConnection(connection)DO Sync()LOOPCreateHttpConnection is there to give the call something to act on; DeleteHttpConnection 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.