Close connection
Explicitly closes a previously created connection
- Parameters
- Advanced call ?
Function CloseConnection(Val Connection) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Connection | - | Arbitrary | ✔ | Connection, See CreateConnection |
Returns
Boolean - always return True
This method has no additional advanced call parameters.
Caution
NOCLI: this method is not available in CLI version
1C:Enterprise/OneScript code example
Address = "45.79.112.203:4242";
Connection = OPI_TCP.CreateConnection(Address);
Result = OPI_TCP.CloseConnection(Connection);
Result
true