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

ToString() public method

public ToString ( ) : string
return string
      public override string ToString() {
        StringBuilder sb = new StringBuilder("execute_cql_query_result(");
        sb.Append("Success: ");
        sb.Append(Success== null ? "<null>" : Success.ToString());
        sb.Append(",Ire: ");
        sb.Append(Ire== null ? "<null>" : Ire.ToString());
        sb.Append(",Ue: ");
        sb.Append(Ue== null ? "<null>" : Ue.ToString());
        sb.Append(",Te: ");
        sb.Append(Te== null ? "<null>" : Te.ToString());
        sb.Append(",Sde: ");
        sb.Append(Sde== null ? "<null>" : Sde.ToString());
        sb.Append(")");
        return sb.ToString();
      }