DALPSConnection.DALPSBrowseDelegate Delegate
- Last UpdatedApr 08, 2026
- 1 minute read
The delegate or callback method that is passed to the Browse method.
public delegate void DALPSConnection.DALPSBrowseDelegate(
string nodeName,
string filterRegExp,
DataSet data,
DALPSBrowseStatus browseStatus,
DALResponseStatus dalResponseStatus,
object clientObject,
string failureReason
)
public delegate void DALPSConnection.DALPSBrowseDelegate(
String^ nodeName,
String^ filterRegExp,
DataSet^ data,
DALPSBrowseStatus browseStatus,
DALResponseStatus dalResponseStatus,
Object^ clientObject,
String^ failureReason
)
Parameters
- nodeName
- The node name to browse.
- filterRegExp
- The filtered regular expression.
- data
- The dataset containing the browse data. The main table will always be Schema, which contains NodeName, HasChildren, and CanTerminate columns.
- browseStatus
- The status of the browse command.
- dalResponseStatus
- The Data Access Layer (DAL) response status. Check this status before checking the browseStatus.
- clientObject
- The client object that was passed to the Browse call.
- failureReason
- A description of the failure.