コード例 #1
0
 // Token: 0x06000049 RID: 73 RVA: 0x0000258B File Offset: 0x0000078B
 public DiagnosticLogger(IDiagnosticLogConfig config, Trace tracer, int traceId)
 {
     ArgumentValidator.ThrowIfNull("config", config);
     this.traceId = traceId;
     this.tracer  = tracer;
     this.config  = config;
     this.log     = new LogWrapper(this.config, DiagnosticLogger.Columns);
 }
コード例 #2
0
 // Token: 0x06000048 RID: 72 RVA: 0x00002580 File Offset: 0x00000780
 public DiagnosticLogger(IDiagnosticLogConfig config) : this(config, null, 0)
 {
 }