Skip to content

Commit

Permalink
updated README.md to add EnableLiveStreaming option
Browse files Browse the repository at this point in the history
  • Loading branch information
bezzad committed Sep 18, 2024
1 parent f130752 commit ff76eca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
{
Expand Down
1 change: 1 addition & 0 deletions src/Samples/Downloader.Sample/Program.Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ff76eca

Please sign in to comment.