Connectivity Software User's Guide and Reference
EffectivePermissionAssignment Property



OpcLabs.ServerOpcUA Assembly > OpcLabs.EasyOpc.UA.NodeSpace Namespace > UAServerNode Class : EffectivePermissionAssignment Property
Gets the effective permission assignment for this node, combining inherited and local permissions.
Syntax
'Declaration
 
<BrowsableAttribute(False)>
<JetBrains.Annotations.NotNullAttribute()>
Public ReadOnly Property EffectivePermissionAssignment As UAPermissionAssignment
'Usage
 
Dim instance As UAServerNode
Dim value As UAPermissionAssignment
 
instance.EffectivePermissionAssignment = value
 
value = instance.EffectivePermissionAssignment
[Browsable(false)]
[JetBrains.Annotations.NotNull()]
public UAPermissionAssignment EffectivePermissionAssignment {get;}
[Browsable(false)]
[JetBrains.Annotations.NotNull()]
public:
property UAPermissionAssignment^ EffectivePermissionAssignment {
   UAPermissionAssignment^ get();
}

Property Value

The value of this property cannot be null (Nothing in Visual Basic).

The individual elements of the property value cannot be null (Nothing in Visual Basic).

Remarks

The effective permission assignment is calculated by combining the base permissions (from the parent or type, depending on PermissionsInheritanceType) with the local PermissionAssignment.

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also