ToString() public method

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