Skip to main content
Version: 5.11.2

GetFlattenJson

public LitJson.JsonData GetFlattenJson();

Description

When the request is successful, the returnValue returned is converted to a JsonData object
and all data types that exist in the object are removed and returned.

Example

var bro = Backend.BMember.GetUserInfo();
if(bro.IsSuccess() == false) {
return;
}

var json = bro.GetFlattenJson();

Return casess

When the returnValue exists
Unmarshalled JsonData object is returned.