how to read .html file from Azure storage explorer. through connectionstring can able to access blob. string Template = bloburl + "file.html";
var url = TemplateMain;
var httpClient = new HttpClient();
var html = await httpClient.GetStringAsync(url);
i have tried using GetStringAsync and its working fine.