Merge "[Tizen.WebView] Fix document build warnings"
[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     /// <summary>
22     /// An extended EventArgs class which contains the changed zone status.
23     /// </summary>
24     /// <since_tizen> 3 </since_tizen>
25     public class ZoneChangedEventArgs : EventArgs
26     {
27         /// <summary>
28         /// The class constructor for the ZoneChangedEventArgs class.
29         /// </summary>
30         /// <since_tizen> 3 </since_tizen>
31         /// <param name="state"> An enumeration of type BoundaryState.</param>
32         /// <param name="latitude">The latitude value [-90.0 ~ 90.0] (degrees).</param>
33         /// <param name="longitude">The longitude value [-180.0 ~ 180.0] (degrees).</param>
34         /// <param name="altitude">The altitude value.</param>
35         /// <param name="timestamp">The timestamp value.</param>
36         public ZoneChangedEventArgs(BoundaryState state, double latitude, double longitude, double altitude, DateTime timestamp)
37         {
38             BoundState = state;
39             Latitude = latitude;
40             Longitude = longitude;
41             Altitude = altitude;
42             Timestamp = timestamp;
43         }
44
45         /// <summary>
46         /// Gets the boundary state.
47         /// </summary>
48         /// <since_tizen>3</since_tizen>
49         public BoundaryState BoundState { get; private set; }
50
51         /// <summary>
52         /// Gets the latitude.
53         /// </summary>
54         /// <since_tizen> 3 </since_tizen>
55         public double Latitude { get; private set; }
56
57         /// <summary>
58         /// Gets the longitude.
59         /// </summary>
60         /// <since_tizen>3</since_tizen>
61         public double Longitude { get; private set; }
62
63         /// <summary>
64         /// Gets the altitude.
65         /// </summary>
66         /// <since_tizen> 3 </since_tizen>
67         public double Altitude { get; private set; }
68
69         /// <summary>
70         /// Method to get the timestamp.
71         /// </summary>
72         /// <since_tizen> 3 </since_tizen>
73         public DateTime Timestamp { get; private set; }
74     }
75 }