Class DataParser
Parses Rapid data strings into well ordered trees.
Inheritance
System.Object
DataParser
Namespace: ABB.Robotics.Controllers.RapidDomain
Assembly: ABB.Robotics.Controllers.PC.dll
Syntax
public class DataParser
Constructors
DataParser(String)
Initializes a new instance of the DataParser class.
Declaration
public DataParser(string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data | The text to parse. |
Methods
Parse()
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 |
---|---|---|
System.String | data | Data to parse. |
Returns
Type | Description |
---|---|
DataNode | The tree for the data. |