private void Page_Metrics(object sender, MetricEventArgs e)
 {
     if (DebugInfo)
     {
         Console.WriteLine($"Page_Metrics: {e.Title}, {e.Metrics.Count}");
     }
 }
Example #2
0
 void metrics_MetricUpdated(object sender, MetricEventArgs e)
 {
     if (e.Type != metricType)
     {
         return;
     }
     UpdateContent(CreateContent(e.Value));
 }
 void metrics_MetricUpdated(object sender, MetricEventArgs e)
 {
     if (e.Type != metricType) return;
     UpdateContent(CreateContent(e.Value));
 }