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:
authorSean Templeton <seantempleton@outlook.com>2019-03-18 02:20:14 +0300
committerSean Templeton <seantempleton@outlook.com>2019-03-18 02:28:45 +0300
commitb02b19e6839fe98449ca322c22d262f0736c2fbe (patch)
treebd506e2ce7caa60558a1c5692e754ece89ea52cb /Duplicati/Library/Interface
parent19c1c908df1f7adc4fc40cd6f40a02604407e46a (diff)
Change Put method name to PutAsync
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/IBackend.cs2
-rw-r--r--Duplicati/Library/Interface/IStreamingBackend.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Duplicati/Library/Interface/IBackend.cs b/Duplicati/Library/Interface/IBackend.cs
index 82e614b07..bce97ddc5 100644
--- a/Duplicati/Library/Interface/IBackend.cs
+++ b/Duplicati/Library/Interface/IBackend.cs
@@ -58,7 +58,7 @@ namespace Duplicati.Library.Interface
/// <param name="remotename">The remote filename, relative to the URL</param>
/// <param name="filename">The local filename</param>
/// <param name="cancelToken">Token to cancel the operation.</param>
- Task Put(string remotename, string filename, CancellationToken cancelToken);
+ Task PutAsync(string remotename, string filename, CancellationToken cancelToken);
/// <summary>
/// Downloads a file with the remote data
diff --git a/Duplicati/Library/Interface/IStreamingBackend.cs b/Duplicati/Library/Interface/IStreamingBackend.cs
index 33b8baff2..ca904ac43 100644
--- a/Duplicati/Library/Interface/IStreamingBackend.cs
+++ b/Duplicati/Library/Interface/IStreamingBackend.cs
@@ -35,7 +35,7 @@ namespace Duplicati.Library.Interface
/// <param name="remotename">The remote filename, relative to the URL</param>
/// <param name="stream">The stream to read from</param>
/// <param name="cancelToken">Token to cancel the operation.</param>
- Task Put(string remotename, System.IO.Stream stream, CancellationToken cancelToken);
+ Task PutAsync(string remotename, System.IO.Stream stream, CancellationToken cancelToken);
/// <summary>
/// Downloads a file with the remote data