Release 4.0.0-preview1-00172
[platform/core/csapi/tizenfx.git] / src / Tizen.Location / Tizen.Location / ZoneChangedEventArgs.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.Location
20 {
21     public class ZoneChangedEventArgs : EventArgs
22     {
23         /// <summary>
24         /// The class constructor for the ZoneChangedEventArgs class.
25         /// </summary>
26         /// <since_tizen> 3 </since_tizen>
27         /// <param name="state"> An enumeration of type BoundaryState.</param>
28         /// <param name="latitude">The latitude value [-90.0 ~ 90.0] (degrees).</param>
29         /// <param name="longitude">The longitude value [-180.0 ~ 180.0] (degrees).</param>
30         /// <param name="altitude">The altitude value.</param>
31         /// <param name="timestamp">The timestamp value.</param>
32         public ZoneChangedEventArgs(BoundaryState state, double latitude, double longitude, double altitude, DateTime timestamp)
33         {
34             BoundState = state;
35             Latitude = latitude;
36             Longitude = longitude;
37             Altitude = altitude;
38             Timestamp = timestamp;
39         }
40
41         /// <summary>
42         /// Gets the boundary state.
43         /// </summary>
44         /// <since_tizen>3</since_tizen>
45         public BoundaryState BoundState { get; private set; }
46
47         /// <summary>
48         /// Gets the latitude.
49         /// </summary>
50         /// <since_tizen> 3 </since_tizen>
51         public double Latitude { get; private set; }
52
53         /// <summary>
54         /// Gets the longitude.
55         /// </summary>
56         /// <since_tizen>3</since_tizen>
57         public double Longitude { get; private set; }
58
59         /// <summary>
60         /// Gets the altitude.
61         /// </summary>
62         /// <since_tizen> 3 </since_tizen>
63         public double Altitude { get; private set; }
64
65         /// <summary>
66         /// Method to get the timestamp.
67         /// </summary>
68         /// <since_tizen> 3 </since_tizen>
69         public DateTime Timestamp { get; private set; }
70     }
71 }