Very basic download Bitmap Image from the web.
Briefly

Using HttpClient for asynchronous image downloads allows for efficient resource management and keeps the UI responsive while images are fetched from the web.
Changing Task<Bitmap> to Task<byte[]> enables developers to handle various file types easily, providing greater flexibility in file handling beyond just images.
Read at CodeProject
[
|
]