Enum XslFoLoadOptions.ParsingErrorsHandlingTypes

XslFoLoadOptions.ParsingErrorsHandlingTypes enumeration

Source XSLFO document can contain formatting errors. This enum enumerates possible strategies of handling of such formatting errors

public enum ParsingErrorsHandlingTypes

Values

NameValueDescription
TryIgnore0In this case converter will be instructed to try proceed with conversion and ignore found formatting errors. In this case success not guaranteed, serious problems can occure later in converter, anf in suck case will be thrown exception with list of found formatting errors.
ThrowExceptionImmediately1In this case conversion will be stopped immediately and exception will be thrown immediately after detecting of first formatting error
InvokeCustomHandler2This is the most agile method - custom code must supply (in WarningCallback property) special handler that will be called when formatting error detected. That handler can f.e. log or count errors etc and will supply decision whether processing can be continued for this or that error.

See Also