DALPSConnection.DALPSBrowseAttributeDelegate Delegate
- Last UpdatedApr 08, 2026
- 1 minute read
The delegate method that receives data from DALPSConnection.BrowseAttributes. The client should create this delegate method.
public delegate void DALPSConnection.DALPSBrowseAttributeDelegate(
string nodeName,
DataSet data,
DALPSBrowseStatus browseStatus,
DALResponseStatus dalResponseStatus,
object clientObject,
string failureReason
)
public delegate void DALPSConnection.DALPSBrowseAttributeDelegate(
String^ nodeName,
DataSet^ data,
DALPSBrowseStatus browseStatus,
DALResponseStatus dalResponseStatus,
Object^ clientObject,
String^ failureReason
)
Parameters
- nodeName
- The node name to browse attributes.
- data
- The dataset that containing the attribute data. The main table will always be "Attributes", which contains "AttributeName" and "AttributeValue" columns.
- browseStatus
- The status about browse attributes command.
- dalResponseStatus
- The Data Access Layer (DAL) response status. Check this status before checking the Browse status.
- clientObject
- The reference to the client object.
- failureReason
- A description of the failure.