Skip to content
This repository was archived by the owner on Dec 11, 2020. It is now read-only.
Jef King edited this page Jun 7, 2017 · 1 revision

Initialize

var container = new Container("Data", "UseDevelopmentStorage=true");
await container.CreateIfNotExists();

Model

Save as JSON

var model = new object();
await container.Save("Model", model);

Get

await container.Get<object>("Model");

Bytes

Save

var bytes = new byte[];
await container.Save("Binary", bytes);

Get

await container.Get("Binary");

Text

Save

var text = "some string";
await container.Save("Text", text);

Get

await container.GetText("Text");
Clone this wiki locally