private void WriteDictToBlob(Dictionary <string, string> Dict, string name) { string json = new JavaScriptSerializer().Serialize(Dict); BlobStorageService.CreateBlob(name, "application/json", BlobStorageService.ToStream(json)); }