public 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);
}
function add_ProcessException(value);
function remove_ProcessException(value);
Argument 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.