Quantcast
Channel: How to upload image from local system to azure blob storage in c# - Stack Overflow
Browsing all 4 articles
Browse latest View live

Answer by sean717 for How to upload image from local system to azure blob...

After installing the recommended nuget pkg "Azure.Storage.Blobs" (https://www.nuget.org/packages/Azure.Storage.Blobs/), following code worked in .NET core public void PersistPhoto(IFormFile...

View Article



Answer by Gaurav Mantri for How to upload image from local system to azure...

Please try something like the following:string storageConnectionString = "<connection_string>";CloudStorageAccount storageacc = CloudStorageAccount.Parse(storageConnectionString);CloudBlobClient...

View Article

Answer by William Xifaras for How to upload image from local system to azure...

I think you have two things wrong.Is myblob your container? GetContainerReference requires that you pass in the name of the container, not the blob name. I'm guessing the container name is...

View Article

How to upload image from local system to azure blob storage in c#

I am trying to upload a image file from local system to azure blob storage using c#. Below is the code I am using:string storageConnectionString = "<connection_string>";CloudStorageAccount...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images