Class Tracer

Definition

Namespace:
Tizen
Assembly:
Tizen.Tracer.dll
API Level:
3

Provides functions for writing a trace message to the system trace buffer.

C#
Copy
public static class Tracer
Inheritance
System.Object
Tracer

Methods

View Source

AsyncBegin(Int32, String)

Writes a trace event to indicate that an asynchronous event has begun.

Declaration
C#
Copy
public static void AsyncBegin(int cookie, string name)
Parameters
Type Name Description
Int32 cookie

An unique identifier for distinguishing simultaneous events.

System.String name

The name of an event (optionally containing format specifiers).

Remarks

The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method.

API Level: 3
View Source

AsyncEnd(Int32, String)

Writes a trace event to indicate that an asynchronous event has ended.

Declaration
C#
Copy
public static void AsyncEnd(int cookie, string name)
Parameters
Type Name Description
Int32 cookie

An unique identifier for distinguishing simultaneous events.

System.String name

The name of an event (optionally containing format specifiers).

Remarks

Tizen.Tracer.AsyncEnd() ends matched Tizen.Tracer.AsyncBegin() which has the same cookie and name. The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method.

API Level: 3
View Source

Begin(String)

Writes a trace event to indicate that a synchronous event has begun.

Declaration
C#
Copy
public static void Begin(string name)
Parameters
Type Name Description
System.String name

The name of an event (optionally containing format specifiers).

Remarks

The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method.

See Also
API Level: 3
View Source

End()

Writes a trace event to indicate that a synchronous event has ended.

Declaration
C#
Copy
public static void End()
Remarks

Tizen.Tracer.End() ends the most recently called Tizen.Tracer.Begin(). The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method.

See Also
API Level: 3
View Source

TraceValue(Int32, String)

Writes a trace event to track change of an integer value.

Declaration
C#
Copy
public static void TraceValue(int value, string name)
Parameters
Type Name Description
Int32 value

The integer variable to trace.

System.String name

The name of an event (optionally containing format specifiers).

Remarks

The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method.

API Level: 3