/* * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the License); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ using System; namespace Tizen.Network.Nsd { /// /// An extended EventArgs class which contains changed service state during service discovery using DNSSD. /// public class DnssdServiceFoundEventArgs : EventArgs { private DnssdServiceState _state; private DnssdService _service; internal DnssdServiceFoundEventArgs(DnssdServiceState state, DnssdService service) { _state = state; _service = service; } /// /// DNSSD service state. /// public DnssdServiceState State { get { return _state; } } /// /// DNSSD service instance. /// public DnssdService Service { get { return _service; } } } /// /// An extended EventArgs class which contains changed service state during service discovery using SSDP. /// public class SsdpServiceFoundEventArgs : EventArgs { private SsdpServiceState _state; private SsdpService _service; internal SsdpServiceFoundEventArgs(SsdpServiceState state, SsdpService service) { _state = state; _service = service; } /// /// SSDP service state. /// public SsdpServiceState State { get { return _state; } } /// /// SSDP service instance. /// public SsdpService Service { get { return _service; } } } }