in src/Apache.IoTDB/Rpc/Generated/TDataNodeLocation.cs [303:335]
public override string ToString()
{
var sb = new StringBuilder("TDataNodeLocation(");
sb.Append(", DataNodeId: ");
DataNodeId.ToString(sb);
if((ClientRpcEndPoint != null))
{
sb.Append(", ClientRpcEndPoint: ");
ClientRpcEndPoint.ToString(sb);
}
if((InternalEndPoint != null))
{
sb.Append(", InternalEndPoint: ");
InternalEndPoint.ToString(sb);
}
if((MPPDataExchangeEndPoint != null))
{
sb.Append(", MPPDataExchangeEndPoint: ");
MPPDataExchangeEndPoint.ToString(sb);
}
if((DataRegionConsensusEndPoint != null))
{
sb.Append(", DataRegionConsensusEndPoint: ");
DataRegionConsensusEndPoint.ToString(sb);
}
if((SchemaRegionConsensusEndPoint != null))
{
sb.Append(", SchemaRegionConsensusEndPoint: ");
SchemaRegionConsensusEndPoint.ToString(sb);
}
sb.Append(')');
return sb.ToString();
}