QuickOPC User's Guide and Reference
ModelAccessFailure Event



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.Modelling Namespace > UAModelClient Class : ModelAccessFailure Event
Raised whenever the model cannot be accessed (getting or setting a value).
Syntax
'Declaration
 
Public Event ModelAccessFailure As EventHandler(Of UAModelAccessFailureEventArgs)
'Usage
 
Dim instance As UAModelClient
Dim handler As EventHandler(Of UAModelAccessFailureEventArgs)
 
AddHandler instance.ModelAccessFailure, handler
public event EventHandler<UAModelAccessFailureEventArgs> ModelAccessFailure
public:
event EventHandler<UAModelAccessFailureEventArgs^>^ ModelAccessFailure
Event Data

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

PropertyDescription
Attribute Id. Identifies an attribute of a node.  
The OPC-UA server (endpoint) involved in the operation.  
Contains the OpcLabs.BaseLib.FailureEventArgs.Exception carried by the event arguments. (Inherited from OpcLabs.BaseLib.FailureEventArgs)
The descriptor of the OPC-UA node involved in the operation.  
Requirements

Target Platforms: Windows 7 with SP1, Windows Server 2008 R2 with SP1

See Also