change License boilerplate
[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         /// Class Constructor for ZoneChangedEventArgs class.
25         /// </summary>
26         /// <param name="state"> An enumeration of type BoundaryState.</param>
27         /// <param name="latitude"> The latitude value[-90.0 ~ 90.0] (degrees).</param>
28         /// <param name="longitude"> The longitude value[-180.0 ~ 180.0] (degrees).</param>
29         /// <param name="altitude"> The altitude value.</param>
30         /// <param name="timestamp"> The timestamp value.</param>
31         public ZoneChangedEventArgs(BoundaryState state, double latitude, double longitude, double altitude, DateTime timestamp)
32         {
33             BoundState = state;
34             Latitude = latitude;
35             Longitude = longitude;
36             Altitude = altitude;
37             TimeStamp = timestamp;
38         }
39
40         /// <summary>
41         /// Get the Boundary State.
42         /// </summary>
43         public BoundaryState BoundState { get; private set; }
44
45         /// <summary>
46         /// Get the latitude.
47         /// </summary>
48         public double Latitude { get; private set; }
49
50         /// <summary>
51         /// Get the longitude.
52         /// </summary>
53         public double Longitude { get; private set; }
54
55         /// <summary>
56         /// Get the altitude.
57         /// </summary>
58         public double Altitude { get; private set; }
59
60         /// <summary>
61         /// Method to get the timestamp.
62         /// </summary>
63         public DateTime TimeStamp { get; private set; }
64     }
65 }