Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
403 views

TraceSwitch and SourceSwitch - what's the difference?

So I'm probably missing the obvious here, but what actually is the difference between the functionality of the TraceSwitch and SourceSwitch classes? They both give identical summary descriptions: ...
2
votes
2answers
345 views

How to filter trace listened by event id?

I'm using next method to add a trace record: TraceSource.TraceEvent(TraceEventType, Int32, String) where Int32 represents event id. So how to filter in TraceSwitch to listen only by specified ...
2
votes
1answer
326 views

Where should I put a project- or application-wide TraceSwitch in my design?

I'm trying to enhance my program with some logging functionality provided by System.Diagnostics. As my Solution consists of several projects, I wanted to create a switch for the whole application and ...