NodeId
An OPC-UA node's id.
Static Method Summary
| Static Public Methods | ||
| public static |
fromString(string: String): NodeId Creates a new NodeId based on its string representation. |
|
Constructor Summary
| Public Constructor | ||
| public |
constructor(value: String | Number, type: NodeIdType, namespace: Number) Creates a new NodeId based on it's type, value and (optional) namespace. |
|
Member Summary
| Public Members | ||
| public |
The NodeId's type. |
|
| public |
The NodeId's namespace. |
|
| public |
The NodeId's value (e.g. a path or numeric reference). |
|
Method Summary
| Public Methods | ||
| public |
Returns the string representation of a NodeId. |
|
Static Public Methods
Public Constructors
public constructor(value: String | Number, type: NodeIdType, namespace: Number) source
Creates a new NodeId based on it's type, value and (optional) namespace.
Params:
| Name | Type | Attribute | Description |
| value | String | Number | The NodeId's value (e.g. a path or numeric reference). |
|
| type | NodeIdType |
|
The NodeId's type. Defaults to NodeIdType.Numeric or
NodeIdType.String based on the type of |
| namespace | Number |
|
The NodeId's namespace. Defaults to 1 |