You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dowloader's api design is handy and makes sense! But there are some methods with a Task return value, named without using the Async suffix, which confuses me when I use them. The Async suffix is also used in some void methods, such as DowloadService.CancelAsync.
Also I would like DowloadService to use DisposeAsync instead of Clear so that the await using syntax can be used.
Thank you!
The text was updated successfully, but these errors were encountered:
The Downloader release for all .Net versions such as .Net Framework 4.6. So the IAsyncDisposable is just supported in .Net Core and can't be used now. But, in the next version, I would remove support old versions from the Downloader and release it just for .Net 6 and 8.
Dowloader's api design is handy and makes sense! But there are some methods with a
Task
return value, named without using theAsync
suffix, which confuses me when I use them. TheAsync
suffix is also used in somevoid
methods, such asDowloadService.CancelAsync
.Also I would like
DowloadService
to useDisposeAsync
instead ofClear
so that theawait using
syntax can be used.Thank you!
The text was updated successfully, but these errors were encountered: