abdf95e6b7efa909bb16c57aacb9be0d0f15b867
[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     /// <since_tizen> 4 </since_tizen>
27     public sealed class SafeAccountHandle : SafeHandle
28     {
29         /// <summary>
30         /// Initializes a new instance of the SafeAppControlHandle class.
31         /// </summary>
32         /// <since_tizen> 4 </since_tizen>
33         public SafeAccountHandle() : base(IntPtr.Zero, true)
34         {
35         }
36
37         /// <summary>
38         /// Initializes a new instance of the SafeAccountHandle class.
39         /// </summary>
40         /// <param name="existingHandle">An IntPtr object that represents the pre-existing handle to use.</param>
41         /// <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent reliable release.</param>
42         /// <since_tizen> 4 </since_tizen>
43         public SafeAccountHandle(IntPtr existingHandle, bool ownsHandle) : base(IntPtr.Zero, ownsHandle)
44         {
45             SetHandle(existingHandle);
46         }
47
48         /// <summary>
49         /// Gets a value that indicates whether the handle is invalid.
50         /// </summary>
51         /// <since_tizen> 4 </since_tizen>
52         public override bool IsInvalid
53         {
54             get { return this.handle == IntPtr.Zero; }
55         }
56
57         /// <summary>
58         /// When overridden in a derived class, executes the code required to free the handle.
59         /// </summary>
60         /// <returns>true if the handle is released successfully</returns>
61         protected override bool ReleaseHandle()
62         {
63             this.SetHandle(IntPtr.Zero);
64             return true;
65         }
66     }
67 }