c# - retrieve images from .NET web service stored on azure like blob -
im trying figure out how retrieve images web service connected azure thats has images stored blob.. want pointed in right direction, sure if 1 have code example helpful aswell!
i have not tried code yet used google, youtube find example... no luck.. :/
i can store images in folder web service if easier?
blobs accessible using standard urls. may need shared access signature access file on private blob.
i can point in direction:
https://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-how-to-use-blobs/ https://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-shared-access-signature-part-1/
your service should (if understand need):
- create output stream
- create in input stream blob object , accessed using sas
- connect output stream input stream
there plenty of examples around doing this...
Comments
Post a Comment