'Declaration
Public Event UpdateFailure As EventHandler(Of MappingUpdateFailureEventArgs)
'Usage
Dim instance As AbstractMapper Dim handler As EventHandler(Of MappingUpdateFailureEventArgs) AddHandler instance.UpdateFailure, handler
public event EventHandler<MappingUpdateFailureEventArgs> UpdateFailure
public: event EventHandler<MappingUpdateFailureEventArgs^>^ UpdateFailure
Event Data
The event handler receives an argument of type MappingUpdateFailureEventArgs containing data related to this event. The following MappingUpdateFailureEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Exception | Contains the OpcLabs.BaseLib.FailureEventArgs.Exception carried by the event arguments. (Inherited from OpcLabs.BaseLib.FailureEventArgs) |
MappingSource | The mapping source for which the update has failed. |
Requirements