[TCSACR-81][ADD] Added new property to get account handle
[platform/core/csapi/tizenfx.git] / src / Tizen.Account.AccountManager / Tizen.Account.AccountManager / SafeAccountHandle.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 using System;
18 using System.Collections.Generic;
19 using System.Runtime.InteropServices;
20
21 namespace Tizen.Account.AccountManager
22 {
23     /// <summary>
24     /// Represents a wrapper class for a unmanaged Account handle.
25     /// </summary>
26     public sealed class SafeAccountHandle : SafeHandle
27     {
28         /// <summary>
29         /// Initializes a new instance of the SafeAppControlHandle class.
30         /// </summary>
31         public SafeAccountHandle() : base(IntPtr.Zero, true)
32         {
33         }
34
35         /// <summary>
36         /// Initializes a new instance of the SafeAccountHandle class.
37         /// </summary>
38         /// <param name="existingHandle">An IntPtr object that represents the pre-existing handle to use.</param>
39         /// <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent reliable release.</param>
40         public SafeAccountHandle(IntPtr existingHandle, bool ownsHandle) : base(IntPtr.Zero, ownsHandle)
41         {
42             SetHandle(existingHandle);
43         }
44
45         /// <summary>
46         /// Gets a value that indicates whether the handle is invalid.
47         /// </summary>
48         public override bool IsInvalid
49         {
50             get { return this.handle == IntPtr.Zero; }
51         }
52
53         /// <summary>
54         /// When overridden in a derived class, executes the code required to free the handle.
55         /// </summary>
56         /// <returns>true if the handle is released successfully</returns>
57         protected override bool ReleaseHandle()
58         {
59             this.SetHandle(IntPtr.Zero);
60             return true;
61         }
62     }
63 }