Esempio n. 1
0
    async Task Delete(string theBoxId, string itemId)
    {
        #region SystemTextDelete
        var box = new SystemTextJsonBox(
            httpClient,
            theBoxId);
        await box.DeleteAsync(itemId);

        #endregion
    }
Esempio n. 2
0
    async Task Create(string theBoxId)
    {
        #region SystemTextCreate
        var box = new SystemTextJsonBox(
            httpClient,
            theBoxId);
        var person = new Person
        {
            Age  = 10,
            Name = "Lesle"
        };
        await box.CreateAsync(person);

        #endregion
    }