Merge packaging information to csproj
[platform/core/csapi/nsd.git] / Tizen.Network.Nsd / Tizen.Network.Nsd / NsdEventArgs.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.Network.Nsd
20 {
21     /// <summary>
22     /// An extended EventArgs class which contains changed service state during service discovery using DNSSD.
23     /// </summary>
24     public class DnssdServiceFoundEventArgs : EventArgs
25     {
26         private DnssdServiceState _state;
27         private DnssdService _service;
28
29         internal DnssdServiceFoundEventArgs(DnssdServiceState state, DnssdService service)
30         {
31             _state = state;
32             _service = service;
33         }
34
35         /// <summary>
36         /// DNSSD service state.
37         /// </summary>
38         public DnssdServiceState State
39         {
40             get
41             {
42                 return _state;
43             }
44         }
45
46         /// <summary>
47         /// DNSSD service instance.
48         /// </summary>
49         public DnssdService Service
50         {
51             get
52             {
53                 return _service;
54             }
55         }
56     }
57
58     /// <summary>
59     /// An extended EventArgs class which contains changed service state during service discovery using SSDP.
60     /// </summary>
61     public class SsdpServiceFoundEventArgs : EventArgs
62     {
63         private SsdpServiceState _state;
64         private SsdpService _service;
65
66         internal SsdpServiceFoundEventArgs(SsdpServiceState state, SsdpService service)
67         {
68             _state = state;
69             _service = service;
70         }
71
72         /// <summary>
73         /// SSDP service state.
74         /// </summary>
75         public SsdpServiceState State
76         {
77             get
78             {
79                 return _state;
80             }
81         }
82
83         /// <summary>
84         /// SSDP service instance.
85         /// </summary>
86         public SsdpService Service
87         {
88             get
89             {
90                 return _service;
91             }
92         }
93     }
94 }