SourceSwitch.ShouldTrace(TraceEventType) Method

Definition

Determines if trace listeners should be called, based on the trace event type.

public:
 bool ShouldTrace(System::Diagnostics::TraceEventType eventType);
public bool ShouldTrace (System.Diagnostics.TraceEventType eventType);
member this.ShouldTrace : System.Diagnostics.TraceEventType -> bool
Public Function ShouldTrace (eventType As TraceEventType) As Boolean

Parameters

eventType
TraceEventType

One of the TraceEventType values.

Returns

true if the trace listeners should be called; otherwise, false.

Remarks

This method is called by the Trace methods in the TraceSource class to determine whether listeners should be called to write a trace.

Note

Application code should not call this method; it is intended to be called only by methods in the TraceSource class.

Applies to