|
ConcentratorBaseProcessException Event
|
This event is raised if there is an exception encountered while attempting to process a frame in the sample queue.
Namespace: GSF.TimeSeriesAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.246-beta
Syntaxpublic event EventHandler<EventArgs<Exception>> ProcessException
Public Event ProcessException As EventHandler(Of EventArgs(Of Exception))
public:
virtual event EventHandler<EventArgs<Exception^>^>^ ProcessException {
void add (EventHandler<EventArgs<Exception^>^>^ value);
void remove (EventHandler<EventArgs<Exception^>^>^ value);
}
abstract ProcessException : IEvent<EventHandler<EventArgs<Exception>>,
EventArgs<Exception>>
override ProcessException : IEvent<EventHandler<EventArgs<Exception>>,
EventArgs<Exception>>
function add_ProcessException(value);
function remove_ProcessException(value);
View SourceValue
EventHandlerEventArgsException
RemarksArgument is the Exception encountered while parsing the data stream.
Processing will not stop for any exceptions thrown by the user function, but any captured exceptions will be exposed through this event.
See Also