ApplicationGetAgentData |
Top Previous Next |
Prototype
strData:=ApplicationGetAgentData(strName)
Description
Retrieve some current agent specific data.
Parameters
strName: string value that represents the identifier of the data to retrieve.
Returned value
String value with the retrieved data.
Notes
This function is available for custom implementation and should be not used. In the next example usage of "SomeDataName" as data name will produce an empty result because doesn't exists any agent data name called in this way.
Example
// Retrieve some data from agent session SomeData:=ApplicationGetAgentData('SomeDataName');
// Show the retrieved data ApplicationLog('The value for SomeDataName is '+ SomeData); |