diff --git a/README.md b/README.md index a6c72e3c..34222465 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,9 @@ var downloadOpt = new DownloadConfiguration() // minimum size of chunking to download a file in multiple parts, default value is 512 MinimumSizeOfChunking = 1024, // Before starting the download, reserve the storage space of the file as file size, default value is false - ReserveStorageSpaceBeforeStartingDownload = true; + ReserveStorageSpaceBeforeStartingDownload = true, + // Get on demand downloaded data with ReceivedBytes on downloadProgressChanged event + EnableLiveStreaming = false, // config and customize request headers RequestConfiguration = { diff --git a/src/Samples/Downloader.Sample/Program.Config.cs b/src/Samples/Downloader.Sample/Program.Config.cs index 5037580a..b21b2a15 100644 --- a/src/Samples/Downloader.Sample/Program.Config.cs +++ b/src/Samples/Downloader.Sample/Program.Config.cs @@ -25,6 +25,7 @@ private static DownloadConfiguration GetDownloadConfiguration() ClearPackageOnCompletionWithFailure = true, // Clear package and downloaded data when download completed with failure, default value is false MinimumSizeOfChunking = 1024, // minimum size of chunking to download a file in multiple parts, default value is 512 ReserveStorageSpaceBeforeStartingDownload = false, // Before starting the download, reserve the storage space of the file as file size, default value is false + EnableLiveStreaming = false, // Get on demand downloaded data with ReceivedBytes on downloadProgressChanged event RequestConfiguration = { // config and customize request headers