Release 4.0.0-preview1-00169
[platform/core/csapi/tizenfx.git] / src / Tizen.Sensor / Tizen.Sensor / Plugins / Accelerometer.cs
index 1651eb2..3c0867f 100755 (executable)
@@ -19,7 +19,7 @@ using System;
 namespace Tizen.Sensor
 {
     /// <summary>
-    /// Accelerometer Sensor Class. Used for registering callbacks for accelerometer and getting accelerometer data
+    /// The Accelerometer Sensor class is used for registering callbacks for the accelerometer and getting the accelerometer data.
     /// </summary>
     public sealed class Accelerometer : Sensor
     {
@@ -46,10 +46,10 @@ namespace Tizen.Sensor
         public float Z { get; private set; } = float.MinValue;
 
         /// <summary>
-        /// Returns true or false based on whether accelerometer sensor is supported by device.
+        /// Returns true or false based on whether accelerometer sensor is supported by the device.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
-        /// <value><c>true</c> if supported; otherwise, <c>false</c>.</value>
+        /// <value><c>true</c> if supported; otherwise <c>false</c>.</value>
         public static bool IsSupported
         {
             get
@@ -63,8 +63,8 @@ namespace Tizen.Sensor
         /// Returns the number of accelerometer sensors available on the device.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
-        /// <value> The count of accelerometer sensors </value>
-        /// <exception cref="InvalidOperationException">Thrown when the operation is invalid for the current state</exception>
+        /// <value> The count of accelerometer sensors. </value>
+        /// <exception cref="InvalidOperationException">Thrown when the operation is invalid for the current state.</exception>
         public static int Count
         {
             get
@@ -79,11 +79,11 @@ namespace Tizen.Sensor
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         /// <feature>http://tizen.org/feature/sensor.accelerometer</feature>
-        /// <exception cref="ArgumentException">Thrown when an invalid argument is used</exception>
-        /// <exception cref="NotSupportedException">Thrown when the sensor is not supported</exception>
-        /// <exception cref="InvalidOperationException">Thrown when the operation is invalid for the current state</exception>
+        /// <exception cref="ArgumentException">Thrown when an invalid argument is used.</exception>
+        /// <exception cref="NotSupportedException">Thrown when the sensor is not supported.</exception>
+        /// <exception cref="InvalidOperationException">Thrown when the operation is invalid for the current state.</exception>
         /// <param name='index'>
-        /// Index. Default value for this is 0. Index refers to a particular accelerometer sensor in case of multiple sensors
+        /// Index. Default value for this is 0. Index refers to a particular accelerometer sensor in case of multiple sensors.
         /// </param>
         public Accelerometer(uint index = 0) : base(index)
         {
@@ -96,7 +96,7 @@ namespace Tizen.Sensor
         }
 
         /// <summary>
-        /// Event Handler for storing the callback functions for event corresponding to change in accelerometer sensor data.
+        /// An event handler for storing the callback functions for the event corresponding to the change in the accelerometer sensor data.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public event EventHandler<AccelerometerDataUpdatedEventArgs> DataUpdated;