GetReturnValuetoJSON
public 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 LitJson library to handle JSON data.
For details about JsonData, please check here.
Example
var bro = Backend.BMember.GetUserInfo();
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