A set of technologies in the .NET Framework for building web applications and XML web services.
why can't you use IHttpClientFactory? You can make the HttpClient async call sync with .GetAwaiter().GetResult().
var buffer = httpClient.GetByteArrayAsync(blobUrl).GetAwaiter().GetResult();