You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
768 B

  1. 
  2. namespace IPA.AntiMalware
  3. {
  4. /// <summary>
  5. /// The result of an Anti-Malware scan.
  6. /// </summary>
  7. public enum ScanResult
  8. {
  9. /// <summary>
  10. /// The object is known to be safe.
  11. /// </summary>
  12. KnownSafe,
  13. /// <summary>
  14. /// No malware was detected, but it is not known to be safe.
  15. /// </summary>
  16. NotDetected,
  17. /// <summary>
  18. /// Malware was detected, and the content should not be executed.
  19. /// </summary>
  20. Detected,
  21. /// <summary>
  22. /// The malware engine returned a threat level less than the max, so this object may be dangerous.
  23. /// Proceed with caution.
  24. /// </summary>
  25. MaybeMalware
  26. }
  27. }