Poznámka:
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
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;