Difference between revisions of "Midware TAppSrvClient.OnSocksAuthState"
Jump to navigation
Jump to search
(Created page with 'Midware component reference]] -> TAppSrvClient -> OnSocksAuthState == Definition == '''property''' On…') |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
== Definition == | == Definition == | ||
− | + | <syntaxhighlight lang="delphi"> | |
+ | type | ||
+ | TSocksAuthStateEvent = procedure(Sender : TObject; AuthState : TSocksAuthState) of object; | ||
+ | TSocksAuthState = (socksAuthStart, socksAuthSuccess, socksAuthFailure, socksAuthNotRequired); | ||
+ | |||
+ | property OnSocksAuthState : TSocksAuthStateEvent | ||
+ | </syntaxhighlight> | ||
== Description == | == Description == | ||
Line 10: | Line 16: | ||
OnSocksAuthState event is triggered for each state in socks authentication process. | OnSocksAuthState event is triggered for each state in socks authentication process. | ||
− | |||
− | |||
− |
Latest revision as of 12:23, 14 May 2011
Midware component reference]] -> TAppSrvClient -> OnSocksAuthState
Definition
<syntaxhighlight lang="delphi"> type TSocksAuthStateEvent = procedure(Sender : TObject; AuthState : TSocksAuthState) of object; TSocksAuthState = (socksAuthStart, socksAuthSuccess, socksAuthFailure, socksAuthNotRequired);
property OnSocksAuthState : TSocksAuthStateEvent </syntaxhighlight>
Description
Occurs during socks authentication process.
OnSocksAuthState event is triggered for each state in socks authentication process.