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/Backend/S3
parent19c1c908df1f7adc4fc40cd6f40a02604407e46a (diff)
Change Put method name to PutAsync
Diffstat (limited to 'Duplicati/Library/Backend/S3')
-rw-r--r--Duplicati/Library/Backend/S3/S3Backend.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Duplicati/Library/Backend/S3/S3Backend.cs b/Duplicati/Library/Backend/S3/S3Backend.cs
index bed324d44..833192262 100644
--- a/Duplicati/Library/Backend/S3/S3Backend.cs
+++ b/Duplicati/Library/Backend/S3/S3Backend.cs
@@ -342,13 +342,13 @@ namespace Duplicati.Library.Backend
}
}
- public Task Put(string remotename, string localname, CancellationToken cancelToken)
+ public Task PutAsync(string remotename, string localname, CancellationToken cancelToken)
{
using (FileStream fs = File.Open(localname, FileMode.Open, FileAccess.Read, FileShare.Read))
- return Put(remotename, fs, cancelToken);
+ return PutAsync(remotename, fs, cancelToken);
}
- public async Task Put(string remotename, Stream input, CancellationToken cancelToken)
+ public async Task PutAsync(string remotename, Stream input, CancellationToken cancelToken)
{
try
{