mscorlib(4.0.0.0) API with additions
TraceOptions.cs
1 namespace System.Diagnostics
2 {
4  [Flags]
5  public enum TraceOptions
6  {
8  None = 0x0,
12  DateTime = 0x2,
14  Timestamp = 0x4,
16  ProcessId = 0x8,
18  ThreadId = 0x10,
20  Callstack = 0x20
21  }
22 }
Write the call stack, which is represented by the return value of the P:System.Environment....
TraceOptions
Specifies trace data options to be written to the trace output.
Definition: TraceOptions.cs:5
Write the logical operation stack, which is represented by the return value of the P:System....
Write the timestamp, which is represented by the return value of the M:System.Diagnostics....
Represents an instant in time, typically expressed as a date and time of day. To browse the ....
Definition: DateTime.cs:13
Write the process identity, which is represented by the return value of the P:System....
Write the thread identity, which is represented by the return value of the P:System....