Frends.Opcua.Read

Task for reading data from OPCUA Server.

Task version: 1.0.0

Required Frends version: 5.7+

Required .NET version: 8.0

Compatible Agents: Crossplatform

Source code: https://github.com/FrendsPlatform/Frends.Opcua/tree/main/Frends.Opcua.Read

Task Parameters

Name
Description

Mode : OpcOperationMode

Determines the mode for either reading specific nodes or browse existing nodes.

Possible values:

  • Read: Determines the mode for either reading specific nodes or browse existing nodes.

  • Browse: Determines the mode for either reading specific nodes or browse existing nodes.

Default: 0 Example: OpcOperationMode.ReadNodes

NodeIds : String[]

List of NodeIds to read from the OPC UA Server.

Default: - Example: [ "ns=2;i=1001", "ns=2;s=Temperature" ]

StartNodeId : String

NodeId of the node where browsing should be started.

Default: - Example: ns=2;s=Temperature

Task Result

Name
Description

Success : Boolean

Indicates whether the read operation was successful. Example: true

NodeValues : Object

JSON array of node read results. Each element contains NodeId, Value, DataType, StatusCode, and SourceTimestamp. Example: { }

Error : Error

Error message if the operation failed. Example: object { string Message, Exception AdditionalInfo }

Task Changelog

Changelog for Task Frends.Opcua.Read.

[1.0.0] - 2026-05-18

Added

  • Initial implementation

Last updated

Was this helpful?