コード例 #1
0
 /// <inheritdoc />
 public virtual void Flush()
 {
     CheckFreed();
     LoggerCore.Flush();
 }
コード例 #2
0
 private AsyncLogger(LoggerCore core)
 {
     _core = core;
 }
コード例 #3
0
 /// <summary>
 /// Constructor
 /// </summary>
 protected AsyncLogger()
 {
     _core = new LoggerCore(new Context(this, this, LogCore));
 }