{"id":874,"date":"2023-02-22T22:29:35","date_gmt":"2023-02-22T22:29:35","guid":{"rendered":"https:\/\/www.naveedulhaq.com\/?p=874"},"modified":"2023-02-24T10:24:42","modified_gmt":"2023-02-24T10:24:42","slug":"download-files-from-azure-blob-storage-in-c","status":"publish","type":"post","link":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/","title":{"rendered":"Download Files from Azure Blob Storage in C#"},"content":{"rendered":"\n<p>Azure blob storage is Microsoft&#8217;s offering to store unstructured object data. This data can be files, images, videos or documents etc.<\/p>\n\n\n\n<p>Azure blob storage can serve these images and documents directly through the browser which makes Azure Blob storage a perfect choice for storing and serving website images or documents directly from blob storage.<\/p>\n\n\n\n<p>In order to list or download blobs from azure blob storage you have to follow the below steps.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Azure.Storage.Blobs NuGet Package<\/h2>\n\n\n\n<p>Add Azure.Storage.Blobs NuGet package in your project<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"478\" src=\"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2023\/02\/azure-blog-storage-1024x478.png\" loading=\"lazy\" alt=\"Azure blob storage c#\" class=\"wp-image-877\" srcset=\"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2023\/02\/azure-blog-storage-1024x478.png 1024w, https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2023\/02\/azure-blog-storage-300x140.png 300w, https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2023\/02\/azure-blog-storage-768x359.png 768w, https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2023\/02\/azure-blog-storage-1536x718.png 1536w, https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2023\/02\/azure-blog-storage.png 1877w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Now you need the following key credentials in order to access blob storage<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>ClientId<\/strong><\/li>\n\n\n\n<li><strong>ClientSecret<\/strong><\/li>\n\n\n\n<li><strong>TenantId<\/strong><\/li>\n\n\n\n<li><strong>ContainerName<\/strong><\/li>\n\n\n\n<li><strong>AccountName<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Now the first step is to create ClientSecretCredential. This object will authenticate the user against Azure AD using Client Id and Client Secret.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>var credential = new ClientSecretCredential(tenantId, clientId, clientSecret);<\/code><\/pre>\n\n\n\n<p>Once connected with Azure AD, The next step is to initialize BlobServiceClient.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>var blobserviceclient = new BlobServiceClient(new Uri(url), credential);<\/code><\/pre>\n\n\n\n<p>BlobServiceClient helps us to connect with blob containers such as <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>BlobContainerClient containerClient = blobserviceclient.GetBlobContainerClient(containerName);<\/code><\/pre>\n\n\n\n<p>Once you have access to the Blob container you can get blobs from the container like below<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>var blobs = containerClient.GetBlobs().AsPages(null, null);<\/code><\/pre>\n\n\n\n<p>Looping through the blobs<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>foreach (Azure.Page&lt;BlobItem&gt; blob in blobs)\n {\n   foreach (BlobItem blobItem in blob.Values)\n    {\n      var b1 = containerClient.GetBlobClient(blobItem.Name);\n      using (MemoryStream memoryStream = new MemoryStream())\n       {\n         b1.DownloadTo(memoryStream);\n         string data = System.Text.Encoding.UTF8.GetString(memoryStream.ToArray());\n        }\n\n   }\n  }<\/code><\/pre>\n\n\n\n<p>The complete code will be as follows<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>public static void ProcessBlob()\n {\n   var clientId = \"client-id\";\n   var clientSecret = \"client-secret\";\n   var tenantId = \"tenant-id\";\n   var containerName = \"container-name\";\n   var accountName = \"account-name\";\n\n   var credential = new ClientSecretCredential(tenantId, clientId, clientSecret);\n   var url = string.Format(\"https:\/\/{0}.blob.core.windows.net\/\", accountName);\n   var blobserviceclient = new BlobServiceClient(new Uri(url), credential);\n  try\n  {\n    BlobContainerClient containerClient = blobserviceclient.GetBlobContainerClient(containerName);\n    var blobs = containerClient.GetBlobs().AsPages(null, null);\n\n    \n    foreach (Azure.Page&lt;BlobItem&gt; blob in blobs)\n     {\n        foreach (BlobItem blobItem in blob.Values)\n          {\n            var b1 = containerClient.GetBlobClient(blobItem.Name);\n            using (MemoryStream memoryStream = new MemoryStream())\n            {\n             b1.DownloadTo(memoryStream);\n             string data = System.Text.Encoding.UTF8.GetString(memoryStream.ToArray());\n             }\n\n       }\n      }\n    }\n            catch (Exception e)\n            {\n                Console.WriteLine(e.Message);\n                Console.ReadLine();\n                throw;\n            }\n        }<\/code><\/pre>\n\n\n\n<p>If you want to upload images or files in Azure Blog Storage you can look at the following blog post<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-naveed-ul-haq-039-s-blog wp-block-embed-naveed-ul-haq-039-s-blog\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"82RyMKIfyL\"><a href=\"https:\/\/www.naveedulhaq.com\/index.php\/azure\/add-images-to-azure-blob-storage-in-net-core\/\">Add images to Azure blob storage in .NET Core<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Add images to Azure blob storage in .NET Core&#8221; &#8212; Naveed Ul-Haq&#039;s blog\" data-lazy=\"true\" data-src=\"https:\/\/www.naveedulhaq.com\/index.php\/azure\/add-images-to-azure-blob-storage-in-net-core\/embed\/#?secret=gjiivv9TBS#?secret=82RyMKIfyL\" data-secret=\"82RyMKIfyL\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Azure blob storage is Microsoft&#8217;s offering to store unstructured object data. This data can be files, images, videos or documents etc. Azure blob storage can&#8230;<\/p>\n","protected":false},"author":1,"featured_media":150,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,18],"tags":[11,8,31,32,56],"class_list":["post-874","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-dot-net-core","category-azure","tag-dot-net-core","tag-dot-net-framework","tag-code","tag-developer","tag-visual-studio"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog<\/title>\n<meta name=\"description\" content=\"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog\" \/>\n<meta property=\"og:description\" content=\"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/\" \/>\n<meta property=\"og:site_name\" content=\"Naveed Ul-Haq&#039;s blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-22T22:29:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-24T10:24:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2020\/11\/c-sharp.png\" \/>\n\t<meta property=\"og:image:width\" content=\"560\" \/>\n\t<meta property=\"og:image:height\" content=\"423\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Naveed Ul-Haq\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Naveed Ul-Haq\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/\"},\"author\":{\"name\":\"Naveed Ul-Haq\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\"},\"headline\":\"Download Files from Azure Blob Storage in C#\",\"datePublished\":\"2023-02-22T22:29:35+00:00\",\"dateModified\":\"2023-02-24T10:24:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/\"},\"wordCount\":214,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\"},\"image\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/c-sharp.png\",\"keywords\":[\".net core\",\".net framework\",\"code\",\"developer\",\"visual-studio\"],\"articleSection\":[\".NET\",\"Azure\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/\",\"url\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/\",\"name\":\"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/c-sharp.png\",\"datePublished\":\"2023-02-22T22:29:35+00:00\",\"dateModified\":\"2023-02-24T10:24:42+00:00\",\"description\":\"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/c-sharp.png\",\"contentUrl\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/c-sharp.png\",\"width\":560,\"height\":423,\"caption\":\"c-Sharp-examples\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/download-files-from-azure-blob-storage-in-c\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.naveedulhaq.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Download Files from Azure Blob Storage in C#\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#website\",\"url\":\"https:\\\/\\\/www.naveedulhaq.com\\\/\",\"name\":\"Naveed Ul-Haq's blog\",\"description\":\"AI, Optimizely, Azure &amp; more\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.naveedulhaq.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\",\"name\":\"Naveed Ul-Haq\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\",\"caption\":\"Naveed Ul-Haq\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\"},\"description\":\"I lead engineering delivery teams for digital commerce and digital experience platforms, combining hands-on architecture experience with strong delivery governance. Over 20+ years, I\u2019ve built and led cross\u2011functional teams (engineering, BA, QA) delivering modern cloud solutions on Azure, microservices, APIs and eCommerce\\\/CMS platforms. My recent focus includes AI-enabled commerce automation: product ingestion and enrichment workflows, content optimisation for SEO and shopping feeds, and agentic tooling to improve marketing and accessibility workflows. I\u2019m passionate about building high-performing teams, establishing quality\\\/release standards, and delivering measurable outcomes across performance, reliability, and speed of change.\",\"sameAs\":[\"https:\\\/\\\/www.naveedulhaq.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/naveedulhaq\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog","description":"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/","og_locale":"en_GB","og_type":"article","og_title":"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog","og_description":"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog","og_url":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/","og_site_name":"Naveed Ul-Haq&#039;s blog","article_published_time":"2023-02-22T22:29:35+00:00","article_modified_time":"2023-02-24T10:24:42+00:00","og_image":[{"width":560,"height":423,"url":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2020\/11\/c-sharp.png","type":"image\/png"}],"author":"Naveed Ul-Haq","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Naveed Ul-Haq","Estimated reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/#article","isPartOf":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/"},"author":{"name":"Naveed Ul-Haq","@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9"},"headline":"Download Files from Azure Blob Storage in C#","datePublished":"2023-02-22T22:29:35+00:00","dateModified":"2023-02-24T10:24:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/"},"wordCount":214,"commentCount":0,"publisher":{"@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9"},"image":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/#primaryimage"},"thumbnailUrl":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2020\/11\/c-sharp.png","keywords":[".net core",".net framework","code","developer","visual-studio"],"articleSection":[".NET","Azure"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/","url":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/","name":"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog","isPartOf":{"@id":"https:\/\/www.naveedulhaq.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/#primaryimage"},"image":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/#primaryimage"},"thumbnailUrl":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2020\/11\/c-sharp.png","datePublished":"2023-02-22T22:29:35+00:00","dateModified":"2023-02-24T10:24:42+00:00","description":"Download Files from Azure Blob Storage in C# - Naveed Ul-Haq&#039;s blog","breadcrumb":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/#primaryimage","url":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2020\/11\/c-sharp.png","contentUrl":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2020\/11\/c-sharp.png","width":560,"height":423,"caption":"c-Sharp-examples"},{"@type":"BreadcrumbList","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/download-files-from-azure-blob-storage-in-c\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.naveedulhaq.com\/"},{"@type":"ListItem","position":2,"name":"Download Files from Azure Blob Storage in C#"}]},{"@type":"WebSite","@id":"https:\/\/www.naveedulhaq.com\/#website","url":"https:\/\/www.naveedulhaq.com\/","name":"Naveed Ul-Haq's blog","description":"AI, Optimizely, Azure &amp; more","publisher":{"@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.naveedulhaq.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9","name":"Naveed Ul-Haq","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g","caption":"Naveed Ul-Haq"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g"},"description":"I lead engineering delivery teams for digital commerce and digital experience platforms, combining hands-on architecture experience with strong delivery governance. Over 20+ years, I\u2019ve built and led cross\u2011functional teams (engineering, BA, QA) delivering modern cloud solutions on Azure, microservices, APIs and eCommerce\/CMS platforms. My recent focus includes AI-enabled commerce automation: product ingestion and enrichment workflows, content optimisation for SEO and shopping feeds, and agentic tooling to improve marketing and accessibility workflows. I\u2019m passionate about building high-performing teams, establishing quality\/release standards, and delivering measurable outcomes across performance, reliability, and speed of change.","sameAs":["https:\/\/www.naveedulhaq.com","https:\/\/www.linkedin.com\/in\/naveedulhaq\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/posts\/874","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/comments?post=874"}],"version-history":[{"count":0,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/posts\/874\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/media\/150"}],"wp:attachment":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/media?parent=874"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/categories?post=874"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/tags?post=874"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}