Class SsdpBrowser
Definition
- Namespace:
- Tizen.Network.Nsd
- Assembly:
- Tizen.Network.Nsd.dll
- API Level:
- 4
This class is used for managing the network service discovery using SSDP.
C#Copypublic class SsdpBrowser : object, INsdBrowser
- Inheritance
-
SsdpBrowser
- Implements
Constructors
View Source
SsdpBrowser(String)
A public constructor for the SsdpBrowser class to create a SsdpBrowser instance for the given target.
Declaration
C#Copypublic SsdpBrowser(string target)
Parameters
Type | Name | Description |
---|---|---|
String | target | The target to browse for the service. |
API Level: 4
Feature: http://tizen.org/feature/network.service_discovery.ssdp
Methods
Declaration
C#Copypublic void StartDiscovery()
Remarks
If there are any services available, the ServiceFound event will be invoked. The application will keep browsing for the available or unavailable services until it calls StopDiscovery().
API Level: 4
Feature: http://tizen.org/feature/network.service_discovery.ssdp
Declaration
C#Copypublic void StopDiscovery()
API Level: 4
Privilege Level: public
Privilege: http://tizen.org/privilege/internet
Feature: http://tizen.org/feature/network.service_discovery.ssdp
Events
View Source
ServiceFound
This event is raised when the service has become available or unavailable during a service discovery using SSDP.
Declaration
C#Copypublic event EventHandler<SsdpServiceFoundEventArgs> ServiceFound
Event Type
Type | Description |
---|---|
EventHandler<SsdpServiceFoundEventArgs> |