QOpcUaBrowseRequest#

Contains parameters for a call to the OPC UA browse service. More

Inheritance diagram of PySide6.QtOpcUa.QOpcUaBrowseRequest

Synopsis#

Functions#

Detailed Description#

See also

browse()

class PySide6.QtOpcUa.QOpcUaBrowseRequest#

PySide6.QtOpcUa.QOpcUaBrowseRequest(other)

Parameters

otherPySide6.QtOpcUa.QOpcUaBrowseRequest

Creates a browse request from other.

PySide6.QtOpcUa.QOpcUaBrowseRequest.BrowseDirection#

This enum specifies the possible browse directions supported by a browse call.

Constant

Description

QOpcUaBrowseRequest.BrowseDirection.Forward

Follow references in the forward direction.

QOpcUaBrowseRequest.BrowseDirection.Inverse

Follow references in the inverse direction.

QOpcUaBrowseRequest.BrowseDirection.Both

Follow references in both directions.

PySide6.QtOpcUa.QOpcUaBrowseRequest.browseDirection()#
Return type

BrowseDirection

Returns the browse direction.

PySide6.QtOpcUa.QOpcUaBrowseRequest.includeSubtypes()#
Return type

bool

Returns true if subtypes of the reference type will be retrieved too.

PySide6.QtOpcUa.QOpcUaBrowseRequest.nodeClassMask()#
Return type

NodeClasses

Returns the node class mask.

PySide6.QtOpcUa.QOpcUaBrowseRequest.referenceTypeId()#
Return type

str

Returns the reference type id.

PySide6.QtOpcUa.QOpcUaBrowseRequest.setBrowseDirection(browseDirection)#
Parameters

browseDirectionBrowseDirection

Sets the browse direction to browseDirection.

PySide6.QtOpcUa.QOpcUaBrowseRequest.setIncludeSubtypes(includeSubtypes)#
Parameters

includeSubtypes – bool

Sets the inclusion of subtypes of the reference type to includeSubtypes.

PySide6.QtOpcUa.QOpcUaBrowseRequest.setNodeClassMask(nodeClassMask)#
Parameters

nodeClassMaskNodeClasses

Sets the node class mask to nodeClassMask. Nodes of all classes included into the node class mask will be returned by the browse operation.

See also

nodeClassMask()

PySide6.QtOpcUa.QOpcUaBrowseRequest.setReferenceTypeId(referenceTypeId)#
Parameters

referenceTypeIdReferenceTypeId

Sets the reference type id to referenceTypeId.

PySide6.QtOpcUa.QOpcUaBrowseRequest.setReferenceTypeId(referenceTypeId)
Parameters

referenceTypeId – str

Sets the reference type id to referenceTypeId.