public void RaiseFormat(object source, IDebugEvent dEvent, string stringFormat, params object[] args)
 {
 }
 public void RaiseFormat(object source, IDebugEvent dEvent, string stringFormat, params object[] args)
 {
     Console.WriteLine(stringFormat, args);
 }
 public void Raise(object source, IDebugEvent dEvent, object context = null)
 {
 }
Example #4
0
 private static IDebugEvent Setup(IDebugEvent item)
 {
     // Allow central control
     return(item);
 }
 public void Raise(object source, IDebugEvent dEvent, object context = null)
 {
     Console.WriteLine("[{0}] Source: {1}, Context: {2}", dEvent, source, context);
 }
Example #6
0
 private static IDebugEvent Setup(IDebugEvent item)
 {
     // Allow central control
     return item;
 }
Example #7
0
 public void RaiseFormat(object source, IDebugEvent dEvent, string stringFormat, params object[] args)
 {
 }
Example #8
0
 public void Raise(object source, IDebugEvent dEvent, object?context = null)
 {
 }
Example #9
0
 public void RaiseFormat(object source, IDebugEvent dEvent, string stringFormat, params object[] args)
 {
     stream.WriteLine(stringFormat, args);
 }
Example #10
0
 public void Raise(object source, IDebugEvent dEvent, object?context = null)
 {
     stream.WriteLine("[{0}] Source: {1}, Context: {2}", dEvent, source, context);
 }