From d6bb74154b16eed18c60d8462573238f13382bbb Mon Sep 17 00:00:00 2001 From: Jooseok Song Date: Thu, 28 Sep 2017 14:41:05 +0900 Subject: [PATCH] Removce warning for xml Change-Id: I72933b886799ed2a0db088bbf3d748462cfa80c2 --- .../Tizen.Account.AccountManager/Account.cs | 9 +++++++++ .../Tizen.Account.AccountManager/AccountProvider.cs | 15 +++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/Tizen.Account.AccountManager/Tizen.Account.AccountManager/Account.cs b/Tizen.Account.AccountManager/Tizen.Account.AccountManager/Account.cs index 2a09e98..aba18ba 100644 --- a/Tizen.Account.AccountManager/Tizen.Account.AccountManager/Account.cs +++ b/Tizen.Account.AccountManager/Tizen.Account.AccountManager/Account.cs @@ -37,6 +37,10 @@ namespace Tizen.Account.AccountManager _handle = handle; } + /// + /// Account destructor. + /// + /// 4 ~Account() { Dispose(false); @@ -612,6 +616,11 @@ namespace Tizen.Account.AccountManager GC.SuppressFinalize(this); } + /// + /// Dispose API for destroying the account handle. + /// + /// 3 + /// The boolean value for destoying account handle. protected virtual void Dispose(bool disposing) { if (!disposing) diff --git a/Tizen.Account.AccountManager/Tizen.Account.AccountManager/AccountProvider.cs b/Tizen.Account.AccountManager/Tizen.Account.AccountManager/AccountProvider.cs index be9e077..a580322 100644 --- a/Tizen.Account.AccountManager/Tizen.Account.AccountManager/AccountProvider.cs +++ b/Tizen.Account.AccountManager/Tizen.Account.AccountManager/AccountProvider.cs @@ -27,11 +27,21 @@ namespace Tizen.Account.AccountManager public class AccountProvider : IDisposable { internal IntPtr _handle; + + /// + /// AccountProvider destructor. + /// + /// 3 + /// The account handle. internal AccountProvider(IntPtr handle) { Handle = handle; } + /// + /// AccountProvider deconstructor. + /// + /// 3 ~AccountProvider() { Dispose(false); @@ -365,6 +375,11 @@ namespace Tizen.Account.AccountManager GC.SuppressFinalize(this); } + /// + /// Dispose API for destroying the AccountProvider handle. + /// + /// 3 + /// The boolean value for destoying AccountProvider handle. protected virtual void Dispose(bool disposing) { if (!disposing) -- 2.7.4