From: Jooseok Song Date: Thu, 28 Sep 2017 05:41:05 +0000 (+0900) Subject: Removce warning for xml X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_4.0;p=platform%2Fcore%2Fcsapi%2Faccount.git Removce warning for xml Change-Id: I72933b886799ed2a0db088bbf3d748462cfa80c2 --- 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)