RepairChooser is a delegate that decides, given a problem, if the problem should be repaired or not.
Namespace:
Atalasoft.Shared.Validation
Assembly:
Atalasoft.Shared (in Atalasoft.Shared.dll) Version: 11.5.0.0.0.156 (.NET 4.6.2, x86)
Syntax public delegate bool RepairChooser(
BaseProblem p
)
Public Delegate Function RepairChooser (
p As BaseProblem
) As Boolean
Parameters
- p
- Type: Atalasoft.Shared.Validation.BaseProblem
The problem to be repaired.
Return Value
Type:
BooleanThe delegate returns
true if the problem should be repaired; otherwise
false.
See Also