From: Editor Lionbridge Date: Tue, 22 Aug 2017 11:12:54 +0000 (+0530) Subject: Review and change trace API cs files X-Git-Tag: preview1-00157^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28faada6268cf6332e6ad60752249e52fae51aab;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Review and change trace API cs files Change-Id: I319e52c79143da04a0ebb673025162088fada2b2 --- diff --git a/src/Tizen.Tracer/Tizen/Tracer.cs b/src/Tizen.Tracer/Tizen/Tracer.cs index e00bfcee1..5fffbbb46 100755 --- a/src/Tizen.Tracer/Tizen/Tracer.cs +++ b/src/Tizen.Tracer/Tizen/Tracer.cs @@ -19,7 +19,7 @@ using System; namespace Tizen { /// - /// Provides functions for writing trace message to the system trace buffer. + /// Provides functions for writing a trace message to the system trace buffer. /// public static class Tracer { @@ -29,7 +29,7 @@ namespace Tizen /// /// The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method. /// - /// The name of event (optionally containing format specifiers) + /// The name of an event (optionally containing format specifiers). /// public static void Begin (String name) { @@ -37,7 +37,7 @@ namespace Tizen } /// - /// Writes a trace event to indicate that the synchronous event has ended. + /// Writes a trace event to indicate that a synchronous event has ended. /// /// /// Tizen.Tracer.End() ends the most recently called Tizen.Tracer.Begin(). @@ -55,8 +55,8 @@ namespace Tizen /// /// The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method. /// - /// An unique identifier for distinguishing simultaneous events - /// The name of event (optionally containing format specifiers) + /// An unique identifier for distinguishing simultaneous events. + /// The name of an event (optionally containing format specifiers). /// public static void AsyncBegin (int cookie, String name) { @@ -64,14 +64,14 @@ namespace Tizen } /// - /// Writes a trace event to indicate that the asynchronous event has ended. + /// Writes a trace event to indicate that an asynchronous event has ended. /// /// - /// Tizen.Tracer.AsyncEnd() ends matched Tizen.Tracer.AsyncBegin() which has same cookie and name. + /// 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. /// - /// An unique identifier for distinguishing simultaneous events - /// The name of event (optionally containing format specifiers) + /// An unique identifier for distinguishing simultaneous events. + /// The name of an event (optionally containing format specifiers). /// public static void AsyncEnd (int cookie, String name) { @@ -79,13 +79,13 @@ namespace Tizen } /// - /// Writes a trace event to track change of integer value. + /// Writes a trace event to track change of an integer value. /// /// /// The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method. /// - /// The integer variable to trace - /// The name of event (optionally containing format specifiers) + /// The integer variable to trace. + /// The name of an event (optionally containing format specifiers). public static void TraceValue (int value, String name) { Interop.Tracer.TraceValue (value, name);