I am facing a difficult problem. I need to implement a custom diagnostics section just like the system.diagnostics in the app.config for a managed application. The scenario is as follows:
I have an XML file which has a list of trace sources and listeners associated with each of the trace sources.And there is other stuff in the XML file which is not related to the tracing.What I need to do is, read the XML file and set up the trace sources and listeners just like .NET does at application start-up. When I do something like:
TraceSource sample = new TraceSource("SampleTraceSource"); the application should be able to set up the trace source "SampleTraceSource" that is in my XML file, rather than pick it up from the app.config. As of now, .NET does all this behind the scenes so you needn't worry about how it is implemented. I believe this is done in System.dll when the application starts.
Any ideas?
Thanks