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