Skip to main content
Version: 5.9.6

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