Removce warning for xml 98/153198/3 tizen
authorJooseok Song <seogii.song@samsung.com>
Thu, 28 Sep 2017 05:35:39 +0000 (14:35 +0900)
committerJooseok Song <seogii.song@samsung.com>
Thu, 28 Sep 2017 05:44:10 +0000 (05:44 +0000)
Change-Id: I204dfad487a10eb5b08358f905b55674a404347e

Tizen.Account.AccountManager/Tizen.Account.AccountManager/Account.cs
Tizen.Account.AccountManager/Tizen.Account.AccountManager/AccountProvider.cs

index 2a09e98..386b154 100644 (file)
@@ -27,16 +27,20 @@ namespace Tizen.Account.AccountManager
     {
         private readonly SafeAccountHandle _handle;
 
-       /// <summary>
-       /// Account constructor.
-       /// </summary>
-       /// <since_tizen> 4 </since_tizen>
-               /// <param name="handle"> The account handle.</param>
+        /// <summary>
+        /// Account constructor.
+        /// </summary>
+        /// <since_tizen> 4 </since_tizen>
+        /// <param name="handle"> The account handle.</param>
         public Account(SafeAccountHandle handle)
         {
             _handle = handle;
         }
 
+        /// <summary>
+        /// Account destructor.
+        /// </summary>
+        /// <since_tizen> 4 </since_tizen>
         ~Account()
         {
             Dispose(false);
@@ -612,6 +616,11 @@ namespace Tizen.Account.AccountManager
             GC.SuppressFinalize(this);
         }
 
+        /// <summary>
+        /// Dispose API for destroying the account handle.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="disposing">The boolean value for destoying account handle.</param>
         protected virtual void Dispose(bool disposing)
         {
             if (!disposing)
index be9e077..a580322 100644 (file)
@@ -27,11 +27,21 @@ namespace Tizen.Account.AccountManager
     public class AccountProvider : IDisposable
     {
         internal IntPtr _handle;
+
+        /// <summary>
+        /// AccountProvider destructor.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="handle"> The account handle.</param>
         internal AccountProvider(IntPtr handle)
         {
             Handle = handle;
         }
 
+        /// <summary>
+        /// AccountProvider deconstructor.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         ~AccountProvider()
         {
             Dispose(false);
@@ -365,6 +375,11 @@ namespace Tizen.Account.AccountManager
             GC.SuppressFinalize(this);
         }
 
+        /// <summary>
+        /// Dispose API for destroying the AccountProvider handle.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="disposing">The boolean value for destoying AccountProvider handle.</param>
         protected virtual void Dispose(bool disposing)
         {
             if (!disposing)