Core.GetActiveTimedFunctionNames
Gets a list of the Names of all active Timed Functions in the Core.
Description
All Timed Functions are attached to Method Names in the Core and the SILVIA Brain’s Scripts. This function returns an array of those string Names.
Example Usage (C#)
//Getting all active Timed Function Names
public bool Invoke() {
string[] timedFunctionNames = _core.GetActiveTimedFunctionNames(); return true;
}
Parameters
None. |
Returns
An array of string Names for each active Timed Function in the Core.
See Also
- Core.RemoveTimedFunctionCS