Difference between revisions of "Midware TAppSrvClient.State"

From Overbyte
Jump to navigation Jump to search
 
 
Line 3: Line 3:
 
== Definition ==
 
== Definition ==
  
'''property''' State: '''TClientState''';
+
<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