GetReturnValue
public string GetReturnValue();
Description
Checks the returnValue of the BackendReturnObject returned upon successful request.
returnValue is a string in JSON format.
Example
var bro = Backend.Social.Guild.GetGuildListV3();
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