예제 #1
0
파일: TestSink.cs 프로젝트: bangush/Testing
 public void Begin(BeginScopeContext context)
 {
     if (BeginEnabled == null || BeginEnabled(context))
     {
         Scopes.Add(context);
     }
 }
예제 #2
0
파일: TestSink.cs 프로젝트: bangush/Testing
 public static bool EnableWithTypeName <T>(BeginScopeContext context)
 {
     return(context.LoggerName.Equals(typeof(T).FullName));
 }