We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
var container = new Container("Data", "UseDevelopmentStorage=true"); await container.CreateIfNotExists();
var model = new object(); await container.Save("Model", model);
await container.Get<object>("Model");
var bytes = new byte[]; await container.Save("Binary", bytes);
await container.Get("Binary");
var text = "some string"; await container.Save("Text", text);
await container.GetText("Text");