|
DaqDeviceGeneralOperationError Event |
Raised as a notification of a general operational error. Typically, if this event is raised,
device operation can still continue.
Namespace: GLNeuroTech.Devices.CommonAssembly: GLNeuroTech.Devices.Common (in GLNeuroTech.Devices.Common.dll) Version: 1.2.3.5 (1.2.3.5)
Syntax public event EventHandler<UnhandledExceptionEventArgs> GeneralOperationError
Public Event GeneralOperationError As EventHandler(Of UnhandledExceptionEventArgs)
public:
event EventHandler<UnhandledExceptionEventArgs^>^ GeneralOperationError {
void add (EventHandler<UnhandledExceptionEventArgs^>^ value);
void remove (EventHandler<UnhandledExceptionEventArgs^>^ value);
}
member GeneralOperationError : IEvent<EventHandler<UnhandledExceptionEventArgs>,
UnhandledExceptionEventArgs>
Value
Type:
SystemEventHandlerUnhandledExceptionEventArgsRemarks
This event passes the originally thrown exception that can be used to decide further program execution
or to notify the end user that a problem has occurred. An example of such a condition is a disk full
error when recording incoming data. In this scenario, recording will stop but the device object will
continue to receive packets and otherwise operate normally.
See Also