ApiData().GetExuderData

Returns the arbitrary, application specific string data content for the given Exuder.

Description

This function gets the data content for a particular identified Exuder within a specific Behavior.

Example Usage (C#)


string data = _core.ApiData().GetExuderData(147, 1);

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.

Returns

data The string value representing the data currently attached to the given Exuder within the given Behavior

ApiData()