I\'m already successfully listing available files, but I needed to know how I could pass that file down to the browser for a user to download without necessarily saving it t
Once the user clicks a file the server responds with this
var blob = container.GetBlobReferenceFromServer(option);
var memStream = new MemoryStream();
blob.DownloadToStream(memStream);
Response.ContentType = blob.Properties.ContentType;
Response.AddHeader("Content-Disposition", "Attachment;filename=" + option);
Response.AddHeader("Content-Length", blob.Properties.Length.ToString());
Response.BinaryWrite(memStream.ToArray());
HUGE thanks to Dhananjay Kumar for this solution