namespace QFSW.QC
{
///
/// The result of querying an entity with a scan rule.
///
public enum ScanRuleResult
{
///
/// If the entity should be accepted by the scan rule.
/// This is the lowest priority response and should be used when in doubt.
///
Accept = 0,
///
/// If the entity should be rejected by the scan rule.
/// This takes priority over any other Accept responses.
///
Reject = 1,
///
/// If the entity should be forcefully accepted by the scan rule.
/// This will be immediate and overrides any other Reject responses.
/// No further scan rules will be considered
///
ForceAccept = 2
}
}