QOpcUaBrowseRequest#
Contains parameters for a call to the OPC UA browse service. More…
Synopsis#
Functions#
def
browseDirection
()def
includeSubtypes
()def
nodeClassMask
()def
referenceTypeId
()def
setBrowseDirection
(browseDirection)def
setIncludeSubtypes
(includeSubtypes)def
setNodeClassMask
(nodeClassMask)def
setReferenceTypeId
(referenceTypeId)def
setReferenceTypeId
(referenceTypeId)
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
See also
- class PySide6.QtOpcUa.QOpcUaBrowseRequest#
PySide6.QtOpcUa.QOpcUaBrowseRequest(other)
- Parameters:
Default constructs a browse request with no parameters set.
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:
Returns the browse direction.
See also
- PySide6.QtOpcUa.QOpcUaBrowseRequest.includeSubtypes()#
- Return type:
bool
Returns true if subtypes of the reference type will be retrieved too.
See also
- PySide6.QtOpcUa.QOpcUaBrowseRequest.nodeClassMask()#
- Return type:
Combination of
QOpcUa.NodeClass
Returns the node class mask.
See also
- PySide6.QtOpcUa.QOpcUaBrowseRequest.referenceTypeId()#
- Return type:
str
Returns the reference type id.
See also
- PySide6.QtOpcUa.QOpcUaBrowseRequest.setBrowseDirection(browseDirection)#
- Parameters:
browseDirection –
BrowseDirection
Sets the browse direction to browseDirection
.
See also
- PySide6.QtOpcUa.QOpcUaBrowseRequest.setIncludeSubtypes(includeSubtypes)#
- Parameters:
includeSubtypes – bool
Sets the inclusion of subtypes of the reference type to includeSubtypes
.
See also
- PySide6.QtOpcUa.QOpcUaBrowseRequest.setNodeClassMask(nodeClassMask)#
- Parameters:
nodeClassMask – Combination of
QOpcUa.NodeClass
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
- PySide6.QtOpcUa.QOpcUaBrowseRequest.setReferenceTypeId(referenceTypeId)#
- Parameters:
referenceTypeId –
ReferenceTypeId
Sets the reference type id to referenceTypeId
.
- PySide6.QtOpcUa.QOpcUaBrowseRequest.setReferenceTypeId(referenceTypeId)
- Parameters:
referenceTypeId – str
Sets the reference type id to referenceTypeId
.
See also