ToString() public method

public ToString ( ) : string
return string
 /// <summary>
 /// 
 /// <para>
 /// This is invoked when a match is joined.
 /// </para>
 /// 
 /// </summary>
 /// <param name="matchInfo"/>
 public void OnMatchJoined(JoinMatchResponse matchInfo)
 {
     if (LogFilter.logDebug)
     Debug.Log((object) "NetworkManager OnMatchJoined ");
       if (matchInfo.success)
       {
     Utility.SetAccessTokenForNetwork(matchInfo.networkId, new NetworkAccessToken(matchInfo.accessTokenString));
     this.StartClient(new MatchInfo(matchInfo));
       }
       else
       {
     if (!LogFilter.logError)
       return;
     Debug.LogError((object) ("Join Failed:" + matchInfo.ToString()));
       }
 }