fix build warnings 74/154374/1
authorjomui <jongmun.woo@samsung.com>
Tue, 10 Oct 2017 06:41:00 +0000 (15:41 +0900)
committerjomui <jongmun.woo@samsung.com>
Tue, 10 Oct 2017 06:41:16 +0000 (15:41 +0900)
Signed-off-by: jomui <jongmun.woo@samsung.com>
Change-Id: Id1ca706599107e1b7bace96e69ee4870470649fe

src/Tizen.Location.Geofence/Tizen.Location.Geofence/Fence.cs
src/Tizen.Location.Geofence/Tizen.Location.Geofence/FenceStatus.cs
src/Tizen.Location.Geofence/Tizen.Location.Geofence/GeofenceManager.cs
src/Tizen.Location.Geofence/Tizen.Location.Geofence/NamespaceDoc.cs

index 5443cf230723648856fff190cfa750b1c379b180..50a7e5db9f7506766c0f2fc66e7a29e48e9df3c5 100755 (executable)
@@ -46,6 +46,10 @@ namespace Tizen.Location.Geofence
             Handle = handle;
         }
 
+        /// <summary>
+        /// The destructor of the Fence class.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         ~Fence()
         {
             Dispose(false);
@@ -285,6 +289,9 @@ namespace Tizen.Location.Geofence
             GC.SuppressFinalize(this);
         }
 
+        /// <summary>
+        /// Dispose.
+        /// </summary>
         protected virtual void Dispose(bool disposing)
         {
             if (_disposed)
index fdd00711d7ef49b3958bdc4c48ecd9aa214c7f9d..1f33a555619ca9c86daf10750e7ddcbdf42964a8 100644 (file)
@@ -55,6 +55,10 @@ namespace Tizen.Location.Geofence
             Handle = handle;
         }
 
+        /// <summary>
+        /// The destructor of the FenceStatus class.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         ~FenceStatus()
         {
             Dispose(false);
@@ -110,6 +114,9 @@ namespace Tizen.Location.Geofence
             GC.SuppressFinalize(this);
         }
 
+        /// <summary>
+        /// Dispose.
+        /// </summary>
         protected virtual void Dispose(bool disposing)
         {
             if (_disposed)
index 315c6cb4a044cab9d672b7cfdbf0c7c023492c4d..b97acc8c3fda17776d50d470aae36104dfae638f 100755 (executable)
@@ -65,6 +65,10 @@ namespace Tizen.Location.Geofence
             Handle = handle;
         }
 
+        /// <summary>
+        /// The destructor of the GeofenceManager class.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         ~GeofenceManager()
         {
             Dispose(false);
@@ -281,6 +285,9 @@ namespace Tizen.Location.Geofence
             GC.SuppressFinalize(this);
         }
 
+        /// <summary>
+        /// Dispose.
+        /// </summary>
         protected virtual void Dispose(bool disposing)
         {
             if (_disposed)
index 7944fc4c0a61d4deed3a37256d96e7943a6cf1a5..5d4315a4ad3616047d2600a22ece782568de2ffe 100755 (executable)
@@ -4,17 +4,21 @@ The Tizen.Location.Geofence namespace provides classes for virtual perimeter.
 </summary>
 
 <remarks>
+
 <h2>Overview</h2>
 <para>
 This API provides functions to set the gofence with a geopoint, MAC address of Wi-Fi, and Bluetooth address.
-Also, notifications on events like changing in service status are provided.<p>
+Also, notifications on events like changing in service status are provided.<p/>
+
 There are two kinds of places and fences:<br/>
 - Public places and fences that are created by the MyPlace application can be used by all applications.<br/>
-- Private places and fences that are created by the specified application can be used by the same application.<p>
+- Private places and fences that are created by the specified application can be used by the same application.<p/>
+
 Notifications can be received about the following events:<br/>
 - Zone in when a device enters a specific area.<br/>
 - Zone out when a device exits a specific area.<br/>
-- Results and errors for each event requested to geofence module.<p>
+- Results and errors for each event requested to geofence module.<p/>
+
 The Geofence manager has the following properties:<br/>
 - The geofence type.<br/>
 - The status.<br/>
@@ -28,6 +32,7 @@ http://tizen.org/feature/location<br/>
 http://tizen.org/feature/location.Geofence<br/>
 http://tizen.org/feature/location.wps
 </para>
+
 </remarks>
 */
 namespace Tizen.Location.Geofence {}