mscorlib(4.0.0.0) API with additions
SourceLevels.cs
2 
3 namespace System.Diagnostics
4 {
6  [Flags]
7  public enum SourceLevels
8  {
10  Off = 0x0,
12  Critical = 0x1,
14  Error = 0x3,
16  Warning = 0x7,
18  Information = 0xF,
20  Verbose = 0x1F,
22  [EditorBrowsable(EditorBrowsableState.Advanced)]
23  ActivityTracing = 0xFF00,
25  All = -1
26  }
27 }
Allows only F:System.Diagnostics.TraceEventType.Critical events through.
EditorBrowsableState
Specifies the browsable state of a property or method from within an editor.
Definition: __Canon.cs:3
Attribute can be applied to any application element.
Allows F:System.Diagnostics.TraceEventType.Critical, F:System.Diagnostics.TraceEventType....
An information event. This indicates a significant, successful operation.
SourceLevels
Specifies the levels of trace messages filtered by the source switch and event type filter.
Definition: SourceLevels.cs:7
Allows the F:System.Diagnostics.TraceEventType.Stop, F:System.Diagnostics.TraceEventType....
Does not allow any events through.