How to define custom TraceListener in app.config

前端 未结 2 2060
时光取名叫无心
时光取名叫无心 2020-12-04 10:55

I have implemented a custom trace listener (derived from TextWriteTraceListener) and now I would like to set my application to use it instead of standard

2条回答
  •  没有蜡笔的小新
    2020-12-04 11:50

    I've been struggling with this recently and just in case it helps anyone...

    I knew my type existed so I wrote the following:

    Assembly assembly = System.Reflection.Assembly.GetAssembly(typeof("yourclassname"));
    Type myClassType = assembly.GetType("yournamespace.yourclassname");
    

    In my case, myClassType.AssemblyQualifiedName contained the string I needed in my app.config file in the type attribute.

    For example:

    
        
          
            
              
            
          
        
        
          
        
        
      
    

提交回复
热议问题