QuickOPC User's Guide and Reference
EventLinkingFailure Event (BinderBase)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.LiveBinding Namespace > BinderBase Class : EventLinkingFailure Event
Raised when an event linking failure occurs.
Syntax
'Declaration
 
Public Event EventLinkingFailure As EventHandler(Of EventLinkingFailureEventArgs)
'Usage
 
Dim instance As BinderBase
Dim handler As EventHandler(Of EventLinkingFailureEventArgs)
 
AddHandler instance.EventLinkingFailure, handler
public event EventHandler<EventLinkingFailureEventArgs> EventLinkingFailure
public:
event EventHandler<EventLinkingFailureEventArgs^>^ EventLinkingFailure
Event Data

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

PropertyDescription
Contains the OpcLabs.BaseLib.FailureEventArgs.Exception carried by the event arguments. (Inherited from OpcLabs.BaseLib.FailureEventArgs)
The member linking exception that has caused this error.  
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