namespace IPA.AntiMalware { /// /// The result of an Anti-Malware scan. /// public enum ScanResult { /// /// The object is known to be safe. /// KnownSafe, /// /// No malware was detected, but it is not known to be safe. /// NotDetected, /// /// Malware was detected, and the content should not be executed. /// Detected, /// /// The malware engine returned a threat level less than the max, so this object may be dangerous. /// Proceed with caution. /// MaybeMalware } }