Add JSON string directly to Azure Blob Storage Container using C#
I am trying to load a JSON string (serialized with Newtonsoft.Json) without creating a temporary file. I am serializing object in runtime using JsonConvert.SerializeObject(obj,settings) which returns a string. Following Microsoft documentation I could do as it's illustrated below: // Create a local file in the ./data/ directory for uploading and downloading