From c12d3fbe151a98b4479a5bf4ee04a0837702e137 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 22 Sep 2025 21:04:17 -0400 Subject: [PATCH] Progress doesn't need to be hindered --- {BinaryObjectScanner => ProtectionScan}/Progress.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename {BinaryObjectScanner => ProtectionScan}/Progress.cs (97%) diff --git a/BinaryObjectScanner/Progress.cs b/ProtectionScan/Progress.cs similarity index 97% rename from BinaryObjectScanner/Progress.cs rename to ProtectionScan/Progress.cs index 7583dec4..aee9c631 100644 --- a/BinaryObjectScanner/Progress.cs +++ b/ProtectionScan/Progress.cs @@ -6,8 +6,9 @@ using System; using System.Threading; using System.Diagnostics; +using BinaryObjectScanner; -namespace BinaryObjectScanner +namespace ProtectionScan { /// /// Provides an IProgress{T} that invokes callbacks for each reported progress value. @@ -21,7 +22,7 @@ namespace BinaryObjectScanner /// at the time of construction, the callbacks will be invoked on the ThreadPool. /// /// - public class Progress : IProgress where T : EventArgs + internal class Progress : IProgress where T : EventArgs { /// The synchronization context captured upon construction. This will never be null. private readonly SynchronizationContext? _synchronizationContext;