aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Transport/Web/StorageBlobUploader.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Transport/Web/StorageBlobUploader.cs')
-rw-r--r--Software/Visual_Studio/Tango.Transport/Web/StorageBlobUploader.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.Transport/Web/StorageBlobUploader.cs b/Software/Visual_Studio/Tango.Transport/Web/StorageBlobUploader.cs
index 00600c679..8d645f33f 100644
--- a/Software/Visual_Studio/Tango.Transport/Web/StorageBlobUploader.cs
+++ b/Software/Visual_Studio/Tango.Transport/Web/StorageBlobUploader.cs
@@ -16,7 +16,7 @@ namespace Tango.Transport.Web
public CloudBlockBlob Blob { get; private set; }
- public event EventHandler<WebFileDownloaderProgressEventArgs> Progress;
+ public event EventHandler<StorageBlobProgressEventArgs> Progress;
public StorageBlobUploader(CloudBlockBlob blob, String fileName)
{
@@ -31,7 +31,7 @@ namespace Tango.Transport.Web
private void OnProgress(long current)
{
- Progress?.Invoke(this, new WebFileDownloaderProgressEventArgs()
+ Progress?.Invoke(this, new StorageBlobProgressEventArgs()
{
Current = current,
Total = _stream.Length,