Description
-
Called when wodHttpDLX disconnects from the server.
Return Type
-
None
Syntax
-
object.Disconnected Owner,
ErrorCode, ErrorText
The Disconnected Method syntax has these parts:
| object |
An expression
evaluating to an object of type wodHttpNotify. |
| Owner |
Required. A wodHttpDLXCom object.
Reference to wodHttpDLXCom instance that called this
notification method. |
| ErrorCode |
Required. A Long
value. Holds error number that occured, if any. |
| ErrorText |
Required. A String
value. Holds test descruption of the error. |
Remarks
-
NOTE: This method is called only if you
implemented IwodHttpNotify interface in your application,
and wodHttp.Notification
property has received reference to
instance of your implementation.
This notification method is called when communication
with a remote server is successfully terminated, or
connection was closed due to the error. Communication may
end either due to server's action, or as a result of
Disconnect
method.
|