ITracer Interface

Visual Studio 2015
 

Provides an event tracer.

Namespace:   Microsoft.VisualStudio.Utilities
Assembly:  Microsoft.VisualStudio.Utilities (in Microsoft.VisualStudio.Utilities.dll)

public interface ITracer

NameDescription
System_CAPS_pubpropertyIndentLevel

Gets the indentation level of the tracer.

System_CAPS_pubpropertyLevel

Gets or sets the verbosity level of the tracer.

System_CAPS_pubpropertySource

Gets the TraceSource for the tracer

NameDescription
System_CAPS_pubmethodIndent(Int32)

Increases the indent level by count.

System_CAPS_pubmethodShouldTrace(TraceEventType)

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

System_CAPS_pubmethodTrace(TraceEventType, String)

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

System_CAPS_pubmethodTrace(TraceEventType, String, Object)

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

System_CAPS_pubmethodTrace(TraceEventType, String, Object, Object)

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

System_CAPS_pubmethodTrace(TraceEventType, String, Object[])

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

System_CAPS_pubmethodTraceError(String)

Traces an Error event with the specified message.

System_CAPS_pubmethodTraceError(String, Object)

Traces an Error event with the specified message and argument.

System_CAPS_pubmethodTraceError(String, Object, Object)

Traces an Error event with the specified message and arguments.

System_CAPS_pubmethodTraceError(String, Object[])

Traces an Error event with the specified message and arguments.

System_CAPS_pubmethodTraceException(Exception, TraceEventType)

Traces an exception.

System_CAPS_pubmethodTraceInformation(String)

Traces an information event with the specified message.

System_CAPS_pubmethodTraceInformation(String, Object)

Traces an information event with the specified message and argument.

System_CAPS_pubmethodTraceInformation(String, Object, Object)

Traces an information event with the specified message and arguments.

System_CAPS_pubmethodTraceInformation(String, Object[])

Traces an information event with the specified message and arguments.

System_CAPS_pubmethodTraceVerbose(String)

Traces a verbose event with the specified message.

System_CAPS_pubmethodTraceVerbose(String, Object)

Traces a verbose event with the specified message and argument.

System_CAPS_pubmethodTraceVerbose(String, Object, Object)

Traces a verbose event with the specified message and arguments.

System_CAPS_pubmethodTraceVerbose(String, Object[])

Traces a verbose event with the specified message and arguments.

System_CAPS_pubmethodTraceWarning(String)

Traces a warning event with the specified message.

System_CAPS_pubmethodTraceWarning(String, Object)

Traces a warning event with the specified message and argument.

System_CAPS_pubmethodTraceWarning(String, Object, Object)

Traces a warning event with the specified message and arguments.

System_CAPS_pubmethodTraceWarning(String, Object[])

Traces a warning event with the specified message and arguments.

Return to top
Show: