We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41b3706 commit 6c1fc1bCopy full SHA for 6c1fc1b
src/ByteGuard.FileValidator/Scanners/IAntimalwareScanner.cs
@@ -3,7 +3,11 @@ namespace ByteGuard.FileValidator.Scanners;
3
/// <summary>
4
/// An abstraction for antimalware scanners.
5
/// </summary>
6
-public interface IAntimalwareScanner
+/// <typeparam name="TOptions">
7
+/// The type of options used to configure the antimalware scanner.
8
+/// Implementers should ensure that a constructor with the type exists.
9
+/// </typeparam>
10
+public interface IAntimalwareScanner<TOptions>
11
{
12
13
/// Whether the given file is clean from malicious content based on an antimalware scanner.
0 commit comments