[WiFi] Fix XML documentation warnings 94/153294/1
authorchleun.moon <chleun.moon@samsung.com>
Thu, 28 Sep 2017 07:49:47 +0000 (16:49 +0900)
committerchleun.moon <chleun.moon@samsung.com>
Thu, 28 Sep 2017 07:49:52 +0000 (16:49 +0900)
Change-Id: Ibb439c1f7a697a0c05cb11a1415f7fafefee1a3d
Signed-off-by: Cheoleun Moon <chleun.moon@samsung.com>
src/Tizen.Network.WiFi/Tizen.Network.WiFi/WiFiAP.cs
src/Tizen.Network.WiFi/Tizen.Network.WiFi/WiFiConfiguration.cs
src/Tizen.Network.WiFi/Tizen.Network.WiFi/WiFiManager.cs

index b5fd4ae..bbee576 100755 (executable)
@@ -108,6 +108,9 @@ namespace Tizen.Network.WiFi
             Initialize();
         }
 
+        /// <summary>
+        /// Destroy the WiFiAP object
+        /// </summary>
         ~WiFiAP()
         {
             Dispose(false);
@@ -460,7 +463,7 @@ namespace Tizen.Network.WiFi
         }
 
         /// <summary>
-        /// Deletes the information of a stored access point and disconnects it when the AP is connected.<br>
+        /// Deletes the information of a stored access point and disconnects it when the AP is connected.
         /// If an AP is connected, then the connection information will be stored. This information is used when a connection to that AP is established automatically.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
index 199785d..ea34275 100755 (executable)
@@ -196,6 +196,9 @@ namespace Tizen.Network.WiFi
             _eapConfig = new WiFiEapConfiguration(configHandle);
         }
 
+        /// <summary>
+        /// Destroy of the WiFiConfiguration object
+        /// </summary>
         ~WiFiConfiguration()
         {
             Dispose(false);
index 1f2dbc9..21fe633 100755 (executable)
@@ -44,6 +44,9 @@ namespace Tizen.Network.WiFi
             }
         }
 
+        /// <summary>
+        /// Release the handle
+        /// </summary>
         protected override bool ReleaseHandle()
         {
             Interop.WiFi.Deinitialize(this.handle);
@@ -53,7 +56,7 @@ namespace Tizen.Network.WiFi
     }
 
     /// <summary>
-    /// A manager class which allows applications to connect to a Wireless Local Area Network (WLAN) and transfer data over the network.<br>
+    /// A manager class which allows applications to connect to a Wireless Local Area Network (WLAN) and transfer data over the network.
     /// The Wi-Fi Manager enables your application to activate and deactivate a local Wi-Fi device, and to connect to a WLAN network in the infrastructure mode.
     /// </summary>
     /// <since_tizen> 3 </since_tizen>