ITracer Interface

Definition

Provides an event tracer.

public interface class ITracer
public interface class ITracer
__interface ITracer
public interface ITracer
type ITracer = interface
Public Interface ITracer
Derived

Properties

IndentLevel

The indentation level of the tracer

Level

The verbosity level of the tracer

Source

The TraceSource for the tracer

Methods

Indent(Int32)

Increases the indent level by count

ShouldTrace(TraceEventType)

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

Trace(TraceEventType, String)

Traces an event of the specified type with the specified message.

Trace(TraceEventType, String, Object)

Traces an event of the specified type with the specified message and arguments.

Trace(TraceEventType, String, Object, Object)

Traces an event of the specified type with the specified message and arguments.

Trace(TraceEventType, String, Object[])

Traces an event.

TraceError(String)

Traces an Error event with the specified message.

TraceError(String, Object)

Traces an Error event with the specified message and argument.

TraceError(String, Object, Object)

Traces an Error event with the specified message and arguments.

TraceError(String, Object[])

Traces an Error event.

TraceException(Exception, TraceEventType)

Traces an exception.

TraceInformation(String)

Traces an information event with the specified message.

TraceInformation(String, Object)

Traces an information event with the specified message and argument.

TraceInformation(String, Object, Object)

Traces an information event with the specified message and arguments.

TraceInformation(String, Object[])

Traces an information event.

TraceVerbose(String)

Traces a verbose event with the specified message.

TraceVerbose(String, Object)

Traces a verbose event with the specified message and argument.

TraceVerbose(String, Object, Object)

Traces a verbose event with the specified message and arguments.

TraceVerbose(String, Object[])

Traces a verbose event.

TraceWarning(String)

Traces a warning event with the specified message.

TraceWarning(String, Object)

Traces a warning event with the specified message and argument.

TraceWarning(String, Object, Object)

Traces a warning event with the specified message and arguments.

TraceWarning(String, Object[])

Traces a warning event.

Applies to