Skip to main content
Version: 5.16.0

Download

public BackendReturnObject Download(string collectionName);

Parameter

ValueTypeDescription
collectionNamestringName of collection where data is located

Description

Downloads the saved data from the cloud storage.

Example

Synchronous

// sample data class
public class SampleUnit
{
public string className;
public int level;
public double Power { get; set; }
}
...

var bro = Backend.CloudSave.Download("collectionName");
if(bro.IsSuccess())
{
// Parses data using the JSON parser in use.
var jsonString = bro.ReturnValue;

// Example.(Uses Newtonsoft Json)
var jsonObj = JObject.Parse(jsonString);
var userName = jsonObj["user_name"].ToString();
var stageClear = (int)jsonObj["stage_clear"];
var archer = JsonConvert.DeserializeObject<SampleUnit>(jsonObj["archer"].ToString());
}

Asynchronous

// sample data class
public class SampleUnit
{
public string className;
public int level;
public double Power { get; set; }
}
...

Backend.CloudSave.Download("collectionName", bro =>
{
if(bro.IsSuccess())
{
// Parses data using the JSON parser in use.
var jsonString = bro.ReturnValue;

// Example.(Uses Newtonsoft Json)
var jsonObj = JObject.Parse(jsonString);
var userName = jsonObj["user_name"].ToString();
var stageClear = (int)jsonObj["stage_clear"];
var archer = JsonConvert.DeserializeObject<SampleUnit>(jsonObj["archer"].ToString());
}
});

ReturnCase

Success cases

When downloaded successfully\ StatusCode : 200\ Message : Success\ ReturnValue : Refer to GetReturnValuetoJSON

Error cases

When the collection does not exist\ StatusCode : 404\ Message : not exist folder\ Code : NotFound

When the data does not exist\ StatusCode : 404\ Message : not exist file\ Code : NotFound

GetReturnValuetoJSON

{
"archer": {
"Power": 34534.59,
"className": "archer",
"level": 44
},
"stage_clear": 1024,
"user_name": "backend"
}