ToString() public method

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