If you want to save that image somewhere, add path to where you want to save it.
public class ImageDownloader
{
public static async Task<bool> SaveImage(string url, string username, string password, string savePath)
{
var timeout = TimeSpan.FromSeconds(5);
try
{...