예제 #1
0
 public CustomLogger(string name, ThrowExceptionAt throwExceptionAt, List <string> store)
 {
     _name             = name;
     _throwExceptionAt = throwExceptionAt;
     _store            = store;
 }
예제 #2
0
파일: LoggerTest.cs 프로젝트: rahku/Logging
 public CustomLoggerProvider(string providerName, ThrowExceptionAt throwExceptionAt, List<string> store)
 {
     _providerName = providerName;
     _throwExceptionAt = throwExceptionAt;
     _store = store;
 }
예제 #3
0
 public CustomLoggerProvider(string providerName, ThrowExceptionAt throwExceptionAt, List <string> store)
 {
     _providerName     = providerName;
     _throwExceptionAt = throwExceptionAt;
     _store            = store;
 }
예제 #4
0
파일: LoggerTest.cs 프로젝트: rahku/Logging
 public CustomLogger(string name, ThrowExceptionAt throwExceptionAt, List<string> store)
 {
     _name = name;
     _throwExceptionAt = throwExceptionAt;
     _store = store;
 }