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:
authorRune Henriksen <ruju@itu.dk>2018-02-18 02:18:44 +0300
committerRune Henriksen <ruju@itu.dk>2018-02-18 02:18:44 +0300
commit00292953c327412643d84c6c95ce3f63ff28ed8a (patch)
treee277f375c8206ba95c2ae84df9f52e042629d332 /Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs
parent6adff7e8f5a970bb9ef99c8f2c68833fe3e6bd19 (diff)
added DNSName getter on Backend interface and added NotImplementedException methods on each backend class
Diffstat (limited to 'Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs')
-rw-r--r--Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs b/Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs
index c91b0d6a5..75a18c700 100644
--- a/Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs
+++ b/Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs
@@ -368,5 +368,7 @@ namespace Duplicati.Library.Backend
return m_con;
}
}
+
+ public string DNSName => throw new NotImplementedException();
}
}