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:
Diffstat (limited to 'Duplicati/Library/Interface/IGenericCallbackModule.cs')
-rw-r--r--Duplicati/Library/Interface/IGenericCallbackModule.cs36
1 files changed, 18 insertions, 18 deletions
diff --git a/Duplicati/Library/Interface/IGenericCallbackModule.cs b/Duplicati/Library/Interface/IGenericCallbackModule.cs
index abab5d223..dcdf6690d 100644
--- a/Duplicati/Library/Interface/IGenericCallbackModule.cs
+++ b/Duplicati/Library/Interface/IGenericCallbackModule.cs
@@ -18,22 +18,22 @@ using System;
namespace Duplicati.Library.Interface
{
- /// <summary>
- /// Interface for implementing callback based modules
- /// </summary>
- public interface IGenericCallbackModule : IGenericModule
- {
- /// <summary>
- /// Called when the operation starts
- /// </summary>
- /// <param name="operationname">The full name of the operation</param>
- void OnStart(string operationname, ref string remoteurl, ref string[] localpath);
-
- /// <summary>
- /// Called when the operation finishes
- /// </summary>
- /// <param name="operationname">The full name of the operation</param>
- /// <param name="result">The result object, if this derives from an exception, the operation failed</param>
- void OnFinish(object result);
- }
+ /// <summary>
+ /// Interface for implementing callback based modules
+ /// </summary>
+ public interface IGenericCallbackModule : IGenericModule
+ {
+ /// <summary>
+ /// Called when the operation starts
+ /// </summary>
+ /// <param name="operationname">The full name of the operation</param>
+ void OnStart(string operationname, ref string remoteurl, ref string[] localpath);
+
+ /// <summary>
+ /// Called when the operation finishes
+ /// </summary>
+ /// <param name="operationname">The full name of the operation</param>
+ /// <param name="result">The result object, if this derives from an exception, the operation failed</param>
+ void OnFinish(object result);
+ }
}