Пример #1
0
 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);
 }
 public void WriteBuildStatistics(string statisticsKey, string statisticsValue)
 {
     CheckConsistency();
     myStatusWriter.WriteBuildStatistics(statisticsKey, statisticsValue);
 }