Difference between revisions of "Midware TRequestBroker.EnumServerFunction"

From Overbyte
Jump to navigation Jump to search
(Created page with ' Main page -> Midware component reference -> TRequestBroker -> [[Midware_TRequestBroker.EnumServerFun…')
 
 
Line 2: Line 2:
  
 
== Definition ==
 
== Definition ==
 +
<syntaxhighlight lang="delphi">
 +
type
 +
  TEnumServerFunctions =
 +
        function (Sender : TObject;
 +
                  FunctionCode : String) : Boolean of object;
 +
</syntaxhighlight>
  
 
  '''procedure''' EnumServerFunctions(CallBack : TEnumServerFunctions);
 
  '''procedure''' EnumServerFunctions(CallBack : TEnumServerFunctions);

Latest revision as of 12:46, 24 May 2011

Main page -> Midware component reference -> TRequestBroker -> EnumServerFunction

Definition

<syntaxhighlight lang="delphi"> type

  TEnumServerFunctions = 
       function (Sender : TObject; 
                 FunctionCode : String) : Boolean of object;

</syntaxhighlight>

procedure EnumServerFunctions(CallBack : TEnumServerFunctions);

Description

This method is used to enumerate all server functions. The main purpose is to built some way to display all the server functionnalities such as function code list.