2 writes to TraceOutputOptions
System.Configuration.ConfigurationManager (2)
System\Diagnostics\ListenerElementsCollection.cs (2)
212newListener.TraceOutputOptions = TraceOutputOptions; 343listener.TraceOutputOptions = TraceOutputOptions;
8 references to TraceOutputOptions
Microsoft.VisualBasic.Forms (6)
Microsoft\VisualBasic\Logging\FileLogTraceListener.vb (6)
891If (TraceOutputOptions And TraceOptions.Callstack) = TraceOptions.Callstack Then 896If (TraceOutputOptions And TraceOptions.LogicalOperationStack) = TraceOptions.LogicalOperationStack Then 901If (TraceOutputOptions And TraceOptions.DateTime) = TraceOptions.DateTime Then 907If (TraceOutputOptions And TraceOptions.ProcessId) = TraceOptions.ProcessId Then 912If (TraceOutputOptions And TraceOptions.ThreadId) = TraceOptions.ThreadId Then 917If (TraceOutputOptions And TraceOptions.Timestamp) = TraceOptions.Timestamp Then
System.Diagnostics.TextWriterTraceListener (1)
System\Diagnostics\TextWriterTraceListener.cs (1)
267internal bool IsEnabled(TraceOptions opts) => (opts & TraceOutputOptions) != 0;
System.Diagnostics.TraceSource (1)
System\Diagnostics\TraceListener.cs (1)
437return (opts & TraceOutputOptions) != 0;