Click or drag to resize

RepairSelector Delegate

This delegate will get called to select if a repair should be enacted.

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 RepairAction RepairSelector(
	Object sender,
	BaseProblem problem
)

Parameters

sender
Type: SystemObject
The object reporting the problem.
problem
Type: Atalasoft.Shared.ValidationBaseProblem
The problem that needs to be repaired.

Return Value

Type: RepairAction
NoRepair if the problem will not be repaired, Repair if it will be repaired, and Skip to ignore the problem.
Remarks
If the problem is not repaired, it may cause a PdfExceptionto be thrown later.
See Also