MCPcopy Create free account
hub / github.com/FreeOpcUa/python-opcua / get_user_access_level

Method get_user_access_level

opcua/common/node.py:111–116  ·  view source on GitHub ↗

Get the user access level attribute of the node as a set of AccessLevel enum values.

(self)

Source from the content-addressed store, hash-verified

109 return ua.AccessLevel.parse_bitfield(result.Value.Value)
110
111 def get_user_access_level(self):
112 """
113 Get the user access level attribute of the node as a set of AccessLevel enum values.
114 """
115 result = self.get_attribute(ua.AttributeIds.UserAccessLevel)
116 return ua.AccessLevel.parse_bitfield(result.Value.Value)
117
118 def get_event_notifier(self):
119 """

Callers

nothing calls this directly

Calls 2

get_attributeMethod · 0.95
parse_bitfieldMethod · 0.80

Tested by

no test coverage detected