Difference between revisions of "Midware TAppSrvClient.State"
Jump to navigation
Jump to search
(Created page with ' Main page -> Midware component reference -> TAppSrvClient -> State …') |
|||
| Line 3: | Line 3: | ||
== Definition == | == Definition == | ||
| − | + | <syntaxhighlight lang="delphi"> | |
| + | property State : TClientState; | ||
| + | TClientState = (cstReady, cstDnsLookup, cstConnecting, cstWaitingResponse); | ||
| + | </syntaxhighlight> | ||
== Description == | == Description == | ||
Latest revision as of 12:44, 14 May 2011
Main page -> Midware component reference -> TAppSrvClient -> State
Definition
<syntaxhighlight lang="delphi"> property State : TClientState; TClientState = (cstReady, cstDnsLookup, cstConnecting, cstWaitingResponse); </syntaxhighlight>
Description
State property gives the component state:
| cstReady | Component is ready | |
| cstDnsLooup | Component is waiting for hostname to be resolved to IP address | |
| cstConnecting | Component is waiting for the connection the be established | |
| cstWaitingResponse | Component is waiting response from application server |