diff --git a/Synapse.Handlers.FileUtil/CopyFileHandler.cs b/Synapse.Handlers.FileUtil/CopyFileHandler.cs index 2aad833..33e80c5 100644 --- a/Synapse.Handlers.FileUtil/CopyFileHandler.cs +++ b/Synapse.Handlers.FileUtil/CopyFileHandler.cs @@ -68,6 +68,10 @@ public override ExecuteResult Execute(HandlerStartInfo startInfo) ExecuteResult result = new ExecuteResult(); result.Status = StatusType.Success; + // TODO : Implement DryRun Functionality + if (startInfo.IsDryRun) + throw new NotImplementedException("Dry Run Functionality Has Not Yet Been Implemented."); + try { if (startInfo.Parameters != null) diff --git a/Synapse.Handlers.FileUtil/DeleteFileHandler.cs b/Synapse.Handlers.FileUtil/DeleteFileHandler.cs index 3315291..5b88e8e 100644 --- a/Synapse.Handlers.FileUtil/DeleteFileHandler.cs +++ b/Synapse.Handlers.FileUtil/DeleteFileHandler.cs @@ -57,6 +57,10 @@ public override ExecuteResult Execute(HandlerStartInfo startInfo) result.Status = StatusType.Success; int cheapSequence = 0; + // TODO : Implement DryRun Functionality + if (startInfo.IsDryRun) + throw new NotImplementedException("Dry Run Functionality Has Not Yet Been Implemented."); + OnProgress("DeleteFileHandler", "Handler Execution Begins.", StatusType.Running, 0, cheapSequence++); try { diff --git a/Synapse.Handlers.FileUtil/MungeFileHandler.cs b/Synapse.Handlers.FileUtil/MungeFileHandler.cs index d9065dc..4cf9fa9 100644 --- a/Synapse.Handlers.FileUtil/MungeFileHandler.cs +++ b/Synapse.Handlers.FileUtil/MungeFileHandler.cs @@ -56,6 +56,10 @@ public override ExecuteResult Execute(HandlerStartInfo startInfo) result.Status = StatusType.Success; int cheapSequence = 0; + // TODO : Implement DryRun Functionality + if (startInfo.IsDryRun) + throw new NotImplementedException("Dry Run Functionality Has Not Yet Been Implemented."); + try { OnProgress("ModifyFileHandler", "Handler Execution Begins.", StatusType.Running, 0, cheapSequence++);