Initial commit
[mono.git] / mcs / class / referencesource / System / compmod / system / diagnostics / TraceOptions.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="TraceOptions.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6
7 namespace System.Diagnostics {
8
9     [Flags]
10     public enum TraceOptions {
11         None =             0,
12         LogicalOperationStack = 0x01,
13         DateTime=       0x02,
14         Timestamp=      0x04,
15         ProcessId=      0x08,
16         ThreadId=       0x10,
17         Callstack=      0x20,
18     }
19 }