X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Sensor%2FTizen.Sensor%2FPlugins%2FHumiditySensor.cs;h=d2abaf3ae57ff42629e803ff61610e8b754f707e;hb=6f78efc261e8ea4863cd58fe6a8525cccd3ec988;hp=3ef6def713f92c821255279171f358419bf14c46;hpb=ebcef2f2d08c86a7e3efaec880b1bcc619ad59c4;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Sensor/Tizen.Sensor/Plugins/HumiditySensor.cs b/src/Tizen.Sensor/Tizen.Sensor/Plugins/HumiditySensor.cs index 3ef6def..d2abaf3 100755 --- a/src/Tizen.Sensor/Tizen.Sensor/Plugins/HumiditySensor.cs +++ b/src/Tizen.Sensor/Tizen.Sensor/Plugins/HumiditySensor.cs @@ -19,7 +19,7 @@ using System; namespace Tizen.Sensor { /// - /// HumiditySensor Class. Used for registering callbacks for humidity sensor and getting humidity data + /// The HumiditySensor class is used for registering callbacks for the humidity sensor and getting the humidity data. /// public sealed class HumiditySensor : Sensor { @@ -33,10 +33,10 @@ namespace Tizen.Sensor public float Humidity { get; private set; } = float.MinValue; /// - /// Returns true or false based on whether humidity sensor is supported by device. + /// Returns true or false based on whether the humidity sensor is supported by the device. /// /// 3 - /// true if supported; otherwise, false. + /// true if supported; otherwise false. public static bool IsSupported { get @@ -50,7 +50,7 @@ namespace Tizen.Sensor /// Returns the number of humidity sensors available on the device. /// /// 3 - /// The count of humidity sensors + /// The count of humidity sensors. public static int Count { get @@ -65,11 +65,11 @@ namespace Tizen.Sensor /// /// 3 /// http://tizen.org/feature/sensor.humidity - /// Thrown when an invalid argument is used - /// Thrown when the sensor is not supported - /// Thrown when the operation is invalid for the current state + /// Thrown when an invalid argument is used. + /// Thrown when the sensor is not supported. + /// Thrown when the operation is invalid for the current state. /// - /// Index. Default value for this is 0. Index refers to a particular humidity sensor in case of multiple sensors + /// Index. Default value for this is 0. Index refers to a particular humidity sensor in case of multiple sensors. /// public HumiditySensor(uint index = 0) : base(index) { @@ -82,7 +82,7 @@ namespace Tizen.Sensor } /// - /// Event Handler for storing the callback functions for event corresponding to change in humidity sensor data. + /// An event handler for storing the callback functions for the event corresponding to the change in the humidity sensor data. /// /// 3