ToString() public method

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