in TeamCity.ServiceMessages/Write/Special/Impl/TeamCityWriterFacade.cs [80:86]
public void WriteBuildStatistics(string statisticsKey, string statisticsValue)
{
if (statisticsKey == null) throw new ArgumentNullException(nameof(statisticsKey));
if (statisticsValue == null) throw new ArgumentNullException(nameof(statisticsValue));
CheckConsistency();
_statusWriter.WriteBuildStatistics(statisticsKey, statisticsValue);
}