Skip to main content
Version: 6.0.0

GetReturnValue

public string GetReturnValue();

Description

Checks the returnValue of the BackndReturnObject returned upon successful request.
returnValue is a string in JSON format.

Example

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

var jsonString = bro.GetReturnValue();

Return casess

When the request is successful
A JSON string is returned.

When the request fails
null