Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax <michal@naiman.eu>2016-10-16 01:43:31 +0300
committerMax <michal@naiman.eu>2016-10-16 01:43:31 +0300
commit17178b56d92c4c5d19c36943aee03f9e498c9335 (patch)
tree67079ddbf97a21aafea21217b5cbd2623c264fee /Duplicati/Library/Interface/IGenericSourceModule.cs
parent8c72cefd5bade4a2fa9aed2f4408d11b25cef7d9 (diff)
Added ability to have hidden command options to prevent UnsupportedOptionWarning log
Diffstat (limited to 'Duplicati/Library/Interface/IGenericSourceModule.cs')
-rw-r--r--Duplicati/Library/Interface/IGenericSourceModule.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Duplicati/Library/Interface/IGenericSourceModule.cs b/Duplicati/Library/Interface/IGenericSourceModule.cs
index bc59d9058..8628983b0 100644
--- a/Duplicati/Library/Interface/IGenericSourceModule.cs
+++ b/Duplicati/Library/Interface/IGenericSourceModule.cs
@@ -31,6 +31,11 @@ namespace Duplicati.Library.Interface
public interface IGenericSourceModule : IGenericModule
{
/// <summary>
+ /// Gets a list of hidden arguments to prevent reporting them as unsupported
+ /// </summary>
+ IList<ICommandLineArgument> HiddenCommands { get; }
+
+ /// <summary>
/// This method parse and alter backup source paths, apply and alter filters and returns changed or added options values.
/// </summary>
/// <param name="paths">Backup source paths</param>