ApiData().GetAbsorberData

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

Description

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

Example Usage (C#)


string data = _core.ApiData().GetAbsorberData(147, 2);

Parameters

int

id

The integer numeric value or variable representing the unique ID of the Behavior containing the Absorber.

int

absorberId

The integer numeric value or variable representing the indexed ID of the Absorber containing the arbitrary data, separate from the Behavior ID.

Returns

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

ApiData()