Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
You can register your own error-handling callback with the parsing engine to handle errors.
Example
bool MyErrorHandler(ErrorContext ctx)
{
// Handle the error
return true;
// true=continue parsing, false=stop
}
FFReader ffr = (FFReader)docspec.Parse(new DataReader());
ffr.OnErrorEvent += MyErrorHandler;