This delegate will be called to select if a problem is a candidate for repair.
Namespace:
Atalasoft.PdfDoc.Repair
Assembly:
Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public delegate ProblemAction ProblemSelector(
Object sender,
BaseProblem problem
)
Public Delegate Function ProblemSelector (
sender As Object,
problem As BaseProblem
) As ProblemAction
Parameters
- sender
- Type: SystemObject
The object reporting the problem. - problem
- Type: Atalasoft.Shared.ValidationBaseProblem
The problem that has been detected.
Return Value
Type:
ProblemActionProblemAction.Accept if the problem should be repaired,
ProblemAction.Reject if the problem
should be not be repaired (this will cause an exception), or ProblemAction.Default to use the internal mechanism.
See Also