/// <summary>
 /// <see cref="AspNetCoreCorrelationConfiguration"/> constructor, sets up default <see cref="CorrelationContextFactory"/> and <see cref="CorrelationContextInjector"/>
 /// </summary>
 public AspNetCoreCorrelationConfiguration()
 {
     ContextFactory   = new CorrelationContextFactory();
     ContextInjectors = new List <IContextInjector <CorrelationContext, HttpRequestMessage> >
     {
         new CorrelationContextInjector()
     };
 }
 /// <summary>
 /// CorrelationTracingFilter constructor
 /// </summary>
 public CorrelationTracingFilter()
 {
     contextFactory = new CorrelationContextFactory();
 }
Beispiel #3
0
 public CorrelationContextFactoryTests()
 {
     factory = new CorrelationContextFactory();
 }