Difference between revisions of "Midware TAppSrvClient.OnSocksConnected"
Jump to navigation
Jump to search
(Created page with 'Midware component reference]] -> TAppSrvClient -> OnSocksConnected == Definition == '''property''' OnS…') |
|||
Line 3: | Line 3: | ||
== Definition == | == Definition == | ||
− | + | <syntaxhighlight lang="delphi"> | |
+ | type | ||
+ | TSessionConnected = procedure (Sender: TObject; Error: word) of object; | ||
+ | |||
+ | property OnSocksConnected : TSessionConnected; | ||
+ | </syntaxhighlight> | ||
== Description == | == Description == |
Revision as of 12:13, 14 May 2011
Midware component reference]] -> TAppSrvClient -> OnSocksConnected
Definition
<syntaxhighlight lang="delphi"> type TSessionConnected = procedure (Sender: TObject; Error: word) of object;
property OnSocksConnected : TSessionConnected; </syntaxhighlight>
Description
Occurs when connected to socks server (firewall).
The event OnSocksConnected is triggered when the connection has been established with the socks server. The event handler is the right place to update some status bar to let the user know he is connected with the firewall.
TSessionConnected = procedure (Sender: TObject; Error: word) of object;