Class DataParser
Parses Rapid data strings into well ordered trees.
Inheritance
object
DataParser
Namespace: ABB.Robotics.Controllers.RapidDomain
Assembly: ABB.Robotics.Controllers.PC.dll
Syntax
public class DataParser
Constructors
View SourceDataParser(string)
Initializes a new instance of the DataParser class.
Declaration
public DataParser(string data)
Parameters
| Type | Name | Description |
|---|---|---|
| string | data | The text to parse. |
Methods
View SourceParse()
Parses a data into a tree of Nodes.
Declaration
public DataNode Parse()
Returns
| Type | Description |
|---|---|
| DataNode | The tree for the data. |
Parse(string)
Parse method for repeated calls.
Declaration
public DataNode Parse(string data)
Parameters
| Type | Name | Description |
|---|---|---|
| string | data | Data to parse. |
Returns
| Type | Description |
|---|---|
| DataNode | The tree for the data. |