34 lines
1.5 KiB
C#
34 lines
1.5 KiB
C#
using System;
|
|
|
|
namespace System.Diagnostics
|
|
{
|
|
/// <summary>Specifies trace data options to be written to the trace output.</summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x02000104 RID: 260
|
|
[Flags]
|
|
public enum TraceOptions
|
|
{
|
|
/// <summary>Do not write any elements.</summary>
|
|
// Token: 0x04000310 RID: 784
|
|
None = 0,
|
|
/// <summary>Write the logical operation stack, which is represented by the return value of the <see cref="P:System.Diagnostics.CorrelationManager.LogicalOperationStack" /> property.</summary>
|
|
// Token: 0x04000311 RID: 785
|
|
LogicalOperationStack = 1,
|
|
/// <summary>Write the date and time. </summary>
|
|
// Token: 0x04000312 RID: 786
|
|
DateTime = 2,
|
|
/// <summary>Write the timestamp, which is represented by the return value of the <see cref="M:System.Diagnostics.Stopwatch.GetTimestamp" /> method.</summary>
|
|
// Token: 0x04000313 RID: 787
|
|
Timestamp = 4,
|
|
/// <summary>Write the process identity, which is represented by the return value of the <see cref="P:System.Diagnostics.Process.Id" /> property.</summary>
|
|
// Token: 0x04000314 RID: 788
|
|
ProcessId = 8,
|
|
/// <summary>Write the thread identity, which is represented by the return value of the <see cref="P:System.Threading.Thread.ManagedThreadId" /> property for the current thread.</summary>
|
|
// Token: 0x04000315 RID: 789
|
|
ThreadId = 16,
|
|
/// <summary>Write the call stack, which is represented by the return value of the <see cref="P:System.Environment.StackTrace" /> property.</summary>
|
|
// Token: 0x04000316 RID: 790
|
|
Callstack = 32
|
|
}
|
|
}
|