Class TestTraceMonitor
This class supports the controls infrastructure and is not intended to be used directly from your code.
Inheritance
Namespace: Telerik.Windows.Controls.AnalyticsTest
Assembly: Telerik.Windows.Controls.dll
Syntax
public class TestTraceMonitor : Object, ITraceMonitor
Properties
CurrentFeature
Gets the last reported feature.
Declaration
public string CurrentFeature { get; }
Property Value
System.String
|
Methods
Initialize()
Create an TestTraceMonitor instance.
Declaration
public static TestTraceMonitor Initialize()
Returns
TestTraceMonitor
An instance of the TestTraceMonitor. |
Events
TrackFeature
Raised when TrackAtomicFeature, TrackFeatureStart or TrackFeatureEnd is called.
Declaration
public event EventHandler TrackFeature
Event Type
System.EventHandler
|
Explicit Interface Implementations
ITraceMonitor.TrackAtomicFeature(String)
Declaration
void ITraceMonitor.TrackAtomicFeature(string featureName)
Parameters
System.String
featureName
|
Implements
ITraceMonitor.TrackError(String, Exception)
Declaration
void ITraceMonitor.TrackError(string featureName, Exception exception)
Parameters
System.String
featureName
|
System.Exception
exception
|
Implements
ITraceMonitor.TrackFeatureCancel(String)
Declaration
void ITraceMonitor.TrackFeatureCancel(string featureName)
Parameters
System.String
featureName
|
Implements
ITraceMonitor.TrackFeatureEnd(String)
Declaration
void ITraceMonitor.TrackFeatureEnd(string featureName)
Parameters
System.String
featureName
|
Implements
ITraceMonitor.TrackFeatureStart(String)
Declaration
void ITraceMonitor.TrackFeatureStart(string featureName)
Parameters
System.String
featureName
|
Implements
ITraceMonitor.TrackValue(String, Int64)
Declaration
void ITraceMonitor.TrackValue(string featureName, long value)
Parameters
System.String
featureName
|
System.Int64
value
|