Merge "[WiFi] Add WiFiAP.Update" into rel/api_4
[platform/core/csapi/tizenfx.git] / src / Tizen.Network.WiFi / Tizen.Network.WiFi / WiFiAP.cs
index b5fd4ae..e170b25 100755 (executable)
@@ -17,6 +17,7 @@
 using System;
 using System.Threading.Tasks;
 using System.Collections.Generic;
+using System.ComponentModel;
 
 namespace Tizen.Network.WiFi
 {
@@ -108,6 +109,9 @@ namespace Tizen.Network.WiFi
             Initialize();
         }
 
+        /// <summary>
+        /// Destroy the WiFiAP object
+        /// </summary>
         ~WiFiAP()
         {
             Dispose(false);
@@ -460,7 +464,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>
@@ -487,7 +491,7 @@ namespace Tizen.Network.WiFi
                 WiFiErrorFactory.ThrowWiFiException(ret, WiFiManagerImpl.Instance.GetSafeHandle().DangerousGetHandle(), _apHandle);
             }
         }
-    }
+   }
 
     /// <summary>
     /// An abstract class which is used to represent the WPS information of the access point.
@@ -500,6 +504,7 @@ namespace Tizen.Network.WiFi
     /// <summary>
     /// A class which is used to represent WPS PBC information of the access point.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public class WpsPbcInfo : WpsInfo
     {
     }
@@ -507,6 +512,7 @@ namespace Tizen.Network.WiFi
     /// <summary>
     /// A class which is used to represent WPS PIN information of the access point.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public class WpsPinInfo : WpsInfo
     {
         private string _pin;