Skip to main content
Version: 6.0.0

GetReturnValuetoJSON

public BACKND.LitJson.JsonData GetReturnValuetoJSON();

Description

If the request is successful, the returned returnValue is converted to JsonData and returned.

JsonData is a class provided by the BACKND.LitJson library to handle JSON data.
For details about JsonData, please check here.

Example

var bro = Backnd.Player.GetMyPlayerInfo();
if(bro.IsSuccess() == false) {
return;
}

var json = bro.GetReturnValuetoJSON();

Return casess

When the request is successful
A JsonData object is returned.

When the request fails
null