Difference between revisions of "Midware TServerObject.FServerObjectClass"

From Overbyte
Jump to navigation Jump to search
 
Line 2: Line 2:
  
 
== Definition ==
 
== Definition ==
 +
 +
<syntaxhighlight lang="delphi">
 
type
 
type
 
     TServerObjectClass = class of TServerObject;
 
     TServerObjectClass = class of TServerObject;
 
</syntaxhighlight>
 
</syntaxhighlight>
 
  
 
  '''protected''' FServerObjectClass: '''TServerObjectClass''';
 
  '''protected''' FServerObjectClass: '''TServerObjectClass''';

Latest revision as of 14:46, 24 May 2011

Main page -> Midware component reference -> TServerObject -> FServerObjectClass

Definition

<syntaxhighlight lang="delphi"> type

   TServerObjectClass = class of TServerObject;

</syntaxhighlight>

protected FServerObjectClass: TServerObjectClass;

Description

FServerObjectClass is initialized in constructor with ClassType for the current TServerObject. It is later used by RequestBroker to instanciate the TServerObject. Normaly not used by TServerObject descendent.