ToString() public method

public ToString ( ) : string
return string
Exemplo n.º 1
0
 void OnFailure(HttpResult result)
 {
     response = result.response;
     Debug.LogError("FAILURE: \n" + result.ToString());
 }
Exemplo n.º 2
0
 void OnSuccess(HttpResult result)
 {
     response = result.response;
     Debug.Log("SUCCESS: \n" + result.ToString());
 }