Example #1
0
 public Logger()
 {
     this.LoggerProxy = new DataProcessProxy<LogObject>(new DataProcessHandler<LogObject>(this.OnProxyLog));
     this.LogCounterList = new Dictionary<string, LogCounter>();
 }
Example #2
0
 public Tracer()
 {
     this.TracerProxy = new DataProcessProxy<SortedList>(new DataProcessHandler<SortedList>(this.OnProxyTrace));
 }