Difference between revisions of "Midware TAppSrvClient.FunctionCode"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
== Definition == | == Definition == | ||
− | '''property''' FunctionCode: | + | '''property''' FunctionCode: String; |
== Description == | == Description == | ||
The function code is a string which is used by the application server to know which server object to instanciate to execute the request. It can be anything but default in the server to the server object name without the leading TServerObject. For example if you made a server object whose class name is TServerObjectGETCLIENT then the function code will be GETCLIENT. This behaviour can be overriden in the server object by overriding the BuildFunctionCode procedure. The function code is case insensitive and must not contain any space or control characters. | The function code is a string which is used by the application server to know which server object to instanciate to execute the request. It can be anything but default in the server to the server object name without the leading TServerObject. For example if you made a server object whose class name is TServerObjectGETCLIENT then the function code will be GETCLIENT. This behaviour can be overriden in the server object by overriding the BuildFunctionCode procedure. The function code is case insensitive and must not contain any space or control characters. |
Latest revision as of 09:25, 14 May 2011
Main page -> Midware component reference -> TAppSrvClient -> FunctionCode
Definition
property FunctionCode: String;
Description
The function code is a string which is used by the application server to know which server object to instanciate to execute the request. It can be anything but default in the server to the server object name without the leading TServerObject. For example if you made a server object whose class name is TServerObjectGETCLIENT then the function code will be GETCLIENT. This behaviour can be overriden in the server object by overriding the BuildFunctionCode procedure. The function code is case insensitive and must not contain any space or control characters.