ApiData().SetExuderData
Sets the arbitrary, application specific string data content for the given Exuder.
Description
This function sets the data content for a particular identified Exuder, modifying the current SILVIA Brain to do so. This arbitrary string data can be fetched programmatically, or can also be served up automatically by the SILVIA Server when a particular Exuder within a Behavior is invoked.
Example Usage (C#)
bool success = _core.ApiData().SetExuderData(147, 1, “images/73/54/userImage_423.jpg”);
Parameters
int |
id |
The integer numeric value or variable representing the unique ID of the Behavior containing the Exuder. |
int |
exuderId |
The integer numeric value or variable representing the indexed ID of the Exuder, separate from the Behavior ID. |
string |
data |
The string value representing the new data to apply to the given Exuder within the given Behavior. |
Returns
The boolean success or failure of the operation.