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:
authorKenneth Skovhede <kenneth@hexad.dk>2017-01-24 01:32:30 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2017-01-24 01:32:30 +0300
commit9e6eefad9ff4733ffe736dae71ace7ffb32eb400 (patch)
treeb5813fc4249530eb7105d273e39d2f5ca6cd59b8 /Duplicati/Library/Interface
parent9007165139e5c4d060149bc0bdbfa54bef6fb695 (diff)
parent626a79db1d1d8773bf5f49bf5c5ad92c8900b1f7 (diff)
Merge branch 'feature/add_single_result_code'
# Conflicts: # Duplicati/Library/Modules/Builtin/Strings.cs
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/ResultInterfaces.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Duplicati/Library/Interface/ResultInterfaces.cs b/Duplicati/Library/Interface/ResultInterfaces.cs
index f49d51079..abdb11cbb 100644
--- a/Duplicati/Library/Interface/ResultInterfaces.cs
+++ b/Duplicati/Library/Interface/ResultInterfaces.cs
@@ -20,6 +20,15 @@ using System.Collections.Generic;
namespace Duplicati.Library.Interface
{
+ public enum ParsedResultType
+ {
+ Unknown,
+ Success,
+ Warning,
+ Error,
+ Fatal
+ }
+
public interface IBasicResults
{
DateTime BeginTime { get; }
@@ -29,6 +38,7 @@ namespace Duplicati.Library.Interface
IEnumerable<string> Errors { get; }
IEnumerable<string> Warnings { get; }
IEnumerable<string> Messages { get; }
+ ParsedResultType ParsedResult { get; }
}
public interface IBackendStatstics