c55c3f8c73379e8b4d731c945c3fd75544f0d7df
[platform/core/csapi/tizenfx.git] / src / Tizen.Maps / Tizen.Maps / PlaceCategory.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
19 namespace Tizen.Maps
20 {
21     /// <summary>
22     /// Place Category information, used in Place Discovery and Search requests
23     /// </summary>
24     public class PlaceCategory : IDisposable
25     {
26         internal Interop.PlaceCategoryHandle handle;
27
28         /// <summary>
29         /// Constructs search category object
30         /// </summary>
31         /// <exception cref="System.InvalidOperationException">Throws if native operation failed to allocate memory</exception>
32         public PlaceCategory()
33         {
34             handle = new Interop.PlaceCategoryHandle();
35         }
36
37         internal PlaceCategory(Interop.PlaceCategoryHandle nativeHandle)
38         {
39             handle = nativeHandle;
40         }
41
42
43         /// <summary>
44         /// ID for this category
45         /// </summary>
46         public string Id
47         {
48             get { return handle.Id; }
49             set { handle.Id = value; }
50         }
51
52         /// <summary>
53         /// Name for this category
54         /// </summary>
55         public string Name
56         {
57             get { return handle.Name; }
58             set { handle.Name = value; }
59         }
60
61         /// <summary>
62         /// URL for this category
63         /// </summary>
64         public string Url
65         {
66             get { return handle.Url; }
67             set { handle.Url = value; }
68         }
69
70         public override string ToString()
71         {
72             return $"{Name}";
73         }
74
75         #region IDisposable Support
76         private bool _disposedValue = false;
77
78         protected virtual void Dispose(bool disposing)
79         {
80             if (!_disposedValue)
81             {
82                 handle.Dispose();
83                 _disposedValue = true;
84             }
85         }
86
87         public void Dispose()
88         {
89             Dispose(true);
90         }
91         #endregion
92     }
93 }