Class ActData
Action that add data to the step. The data is maybe from the sensor or computed, etc..
public class ActData : IAct
- Inheritance
-
ActData
- Implements
- Inherited Members
- Extension Methods
Constructors
ActData()
Initializes a new instance of the ActData class.
public ActData()
ActData(Dictionary<string, object>)
Initializes a new instance of the ActData class with the specified data.
public ActData(Dictionary<string, object> data)
Parameters
dataDictionary<string, object>The data dictionary containing key-value pairs.
Properties
Data
Gets or sets the data dictionary containing key-value pairs.
public Dictionary<string, object> Data { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.