New to Telerik UI for WPFStart a free 30-day trial

ITraceMonitor

Interface

This interface represents a monitor which receives trace events from RadControls. You can implement it if you need to receive trace events from the controls used in your application.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public interface ITraceMonitor

Methods

This method is called when an atomic feature is executed.

C#
void TrackAtomicFeature(string feature)
Parameters:featurestring

The feature to be tracked.

Traces an error in a specified feature.

C#
void TrackError(string feature, Exception exception)
Parameters:featurestring

The feature in which the error occurred.

exceptionException

The error that occurred.

This method is called when a feature is canceled.

C#
void TrackFeatureCancel(string feature)
Parameters:featurestring

The feature that was canceled.

This method is called when a feature finishes execution.

C#
void TrackFeatureEnd(string feature)
Parameters:featurestring

The feature that finished.

This method is called when a feature is initiated.

C#
void TrackFeatureStart(string feature)
Parameters:featurestring

The feature that was initiated.

This method is called when a value connected with a specific feature is tracked.

C#
void TrackValue(string feature, long value)
Parameters:featurestring

The feature that produced the value.

valuelong

The value that was tracked by the feature.