using System; namespace System.Diagnostics { /// Specifies trace data options to be written to the trace output. /// 2 // Token: 0x02000104 RID: 260 [Flags] public enum TraceOptions { /// Do not write any elements. // Token: 0x04000310 RID: 784 None = 0, /// Write the logical operation stack, which is represented by the return value of the property. // Token: 0x04000311 RID: 785 LogicalOperationStack = 1, /// Write the date and time. // Token: 0x04000312 RID: 786 DateTime = 2, /// Write the timestamp, which is represented by the return value of the method. // Token: 0x04000313 RID: 787 Timestamp = 4, /// Write the process identity, which is represented by the return value of the property. // Token: 0x04000314 RID: 788 ProcessId = 8, /// Write the thread identity, which is represented by the return value of the property for the current thread. // Token: 0x04000315 RID: 789 ThreadId = 16, /// Write the call stack, which is represented by the return value of the property. // Token: 0x04000316 RID: 790 Callstack = 32 } }