QuickOPC User's Guide and Reference
Exception Property (OperationEventArgs)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.OperationModel Namespace > OperationEventArgs Class : Exception Property
Gets the current exception. Contains null reference when no exception.
Syntax
'Declaration
 
<DefaultValueAttribute("")>
<XmlIgnoreAttribute()>
Public Property Exception As Exception
'Usage
 
Dim instance As OperationEventArgs
Dim value As Exception
 
instance.Exception = value
 
value = instance.Exception
[DefaultValue("")]
[XmlIgnore()]
public Exception Exception {get; set;}
[DefaultValue("")]
[XmlIgnore()]
public:
property Exception^ Exception {
   Exception^ get();
   void set (    Exception^ value);
}
Remarks

Your application code should check the Exception first, before accessing the operation data properties.

If you only need to test that the operation has succeeded, you can also use the Succeeded property.

This property is not serialized into XML. Instead, ErrorMessage is serialized. Deserializing from XML creates a base Exception object with just the message.

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