228cf082cbf82bd714df615dfa6b8efa2b71fe2f
[platform/core/csapi/tizenfx.git] / src / Tizen.Location / Tizen.Location / ServiceStateChangedEventArgs.cs
1 // Copyright 2016 by Samsung Electronics, Inc.,
2 //
3 // This software is the confidential and proprietary information
4 // of Samsung Electronics, Inc. ("Confidential Information"). You
5 // shall not disclose such Confidential Information and shall use
6 // it only in accordance with the terms of the license agreement
7 // you entered into with Samsung.\r
8 \r
9 using System;\r
10 \r
11 \r
12 namespace Tizen.Location\r
13 {\r
14     /// <summary>
15     /// An extended EventArgs class which contains the changed location service state.
16     /// </summary>
17     public class ServiceStateChangedEventArgs : EventArgs
18     {
19         /// <summary>
20         /// Class Constructor for ServiceStateChangedEventArgs class.
21         /// </summary>
22         /// <param name="state"> An enumeration of type LocationServiceState.</param>
23         public ServiceStateChangedEventArgs(ServiceState state)
24         {
25
26             ServiceState = state;
27         }
28
29         /// <summary>
30         /// Get the Service state.
31         /// </summary>
32         public ServiceState ServiceState { get; private set; }
33     }\r
34 }\r