Difference between revisions of "Midware TAppServer.Options"
Jump to navigation
Jump to search
(Created page with ' Main page -> Midware component reference -> TAppServer -> Options == …') |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 3: | Line 3: | ||
== Definition == | == Definition == | ||
| − | + | <syntaxhighlight lang="delphi"> | |
| + | type | ||
| + | TAppServerOption = (asoAutoStart, | ||
| + | asoDisplayCommands, | ||
| + | asoDisplayClientCount); | ||
| + | TAppServerOptions = set of TAppServerOption; | ||
| + | |||
| + | property Options : TAppServerOptions; | ||
| + | </syntaxhighlight> | ||
== Description == | == Description == | ||
Options are used by TAppServer to modify behaviour. | Options are used by TAppServer to modify behaviour. | ||
| + | <syntaxhighlight lang="delphi"> | ||
| + | asoAutoStart Server starts automatically | ||
| + | asoDisplayCommands Server display commands | ||
| + | asoDisplayClientCount Server display client count | ||
| + | </syntaxhighlight> | ||
Latest revision as of 09:00, 14 May 2011
Main page -> Midware component reference -> TAppServer -> Options
Definition
<syntaxhighlight lang="delphi"> type
TAppServerOption = (asoAutoStart,
asoDisplayCommands,
asoDisplayClientCount);
TAppServerOptions = set of TAppServerOption;
property Options : TAppServerOptions; </syntaxhighlight>
Description
Options are used by TAppServer to modify behaviour. <syntaxhighlight lang="delphi"> asoAutoStart Server starts automatically asoDisplayCommands Server display commands asoDisplayClientCount Server display client count </syntaxhighlight>