QuickOPC User's Guide and Reference
ResolveNodeParameters Event



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.InformationModel Namespace > UAModelClient Class : ResolveNodeParameters Event
Raised to to resolve the monitoring, read and subscription parameters for the node.
Syntax
'Declaration
 
Public Event ResolveNodeParameters As EventHandler(Of UAResolveNodeParametersEventArgs)
'Usage
 
Dim instance As UAModelClient
Dim handler As EventHandler(Of UAResolveNodeParametersEventArgs)
 
AddHandler instance.ResolveNodeParameters, handler
public event EventHandler<UAResolveNodeParametersEventArgs> ResolveNodeParameters
public:
event EventHandler<UAResolveNodeParametersEventArgs^>^ ResolveNodeParameters
Event Data

The event handler receives an argument of type UAResolveNodeParametersEventArgs containing data related to this event. The following UAResolveNodeParametersEventArgs properties provide information specific to this event.

PropertyDescription
Default monitoring parameters.  
Default Read parameters.  
Default subscription parameters.  
The OPC-UA server (endpoint) involved in the operation.  
(Inherited from System.ComponentModel.HandledEventArgs)
An object containing monitoring parameters, such as the sampling interval, and optional data change filter.  
The descriptor of the OPC-UA node involved in the operation.  
The read parameters (such as data source or value age).  
An object containing subscription parameters, such as the publishing interval.  
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