Apache.Cassandra.AuthenticationRequest.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
    public override string ToString() {
      StringBuilder sb = new StringBuilder("AuthenticationRequest(");
      sb.Append("Credentials: ");
      sb.Append(Credentials);
      sb.Append(")");
      return sb.ToString();
    }