Rows
public LitJson.JsonData Rows();
Description
When the rows key exists in the returnValue returned upon successful request,
this method returns only the rows value in JsonData format.
'rows' key
The rows key is used as the parent node of the list in most methods
when data is returned in returnValue in the form of a list.
Example
var bro = Backend.GameData.Get("tableName", new Where(), 10);
if(bro.IsSuccess() == false) {
return;
}
var rows = bro.Rows();
Return casess
When the request is successful and the rows key exists in returnValue
A rows key is returned as a JsonData object.
When the request is successful and the rows key does not exist in returnValue
An empty JsonData object is returned.
When the request fails
An empty JsonData object is returned.