diff --git a/BurnOutSharp/IContentCheck.cs b/BurnOutSharp/IContentCheck.cs index 665a8a90..f850d2d8 100644 --- a/BurnOutSharp/IContentCheck.cs +++ b/BurnOutSharp/IContentCheck.cs @@ -1,5 +1,7 @@ namespace BurnOutSharp { + // TODO: This should either include an override that takes a Stream instead of the byte[] + // OR have a completely separate check for when it's an executable specifically internal interface IContentCheck { /// @@ -9,7 +11,6 @@ /// Byte array representing the file contents /// True to include positional data, false otherwise /// String containing any protections found in the file - /// TODO: This should be replaced with a "GenerateMatchers" that produces a list of matchers to be run instead string CheckContents(string file, byte[] fileContent, bool includePosition); } }