Example #1
0
 public IContextBuilder MonitorPerformance(Action <IReadOnlyList <IPerformanceEntry> > onReport)
 {
     _monitor = new PerformanceMonitor(onReport);
     return(this);
 }
Example #2
0
 public IContextBuilder MonitorPerformance(Action <string> onReport)
 {
     _monitor = new PerformanceMonitor(onReport);
     return(this);
 }