Release 4.0.0-preview1-00279
[platform/core/csapi/tizenfx.git] / src / Tizen.Network.Nsd / Tizen.Network.Nsd / NamespaceDoc.cs
1 /**
2 <summary>
3 The Tizen.Network.Nsd namespace provides classes to manage the network service discovery protocols.
4 </summary>
5 <remarks>
6 <h2>Overview</h2>
7 <para>The Nsd API handles two network service discovery protocols: DNS-SD (DNS Service Discovery) and SSDP (Simple Service Discovery Protocol). They allows application to announce local services and search for remote services on a network.
8 </para>
9 <h2>Related Features</h2>
10 <para>To use DNS-SD, declare the following feature requirements in the config file:<br/>
11 http://tizen.org/feature/network.service_discovery.dnssd
12 </para>
13 <para>To use SSDP, declare the following feature requirements in the config file:<br/>
14 http://tizen.org/feature/network.service_discovery.ssdp
15 </para>
16
17 </remarks>
18
19 <example>
20 The following example demonstrates how to register a DNS-SD local service.
21 <code>
22 DnssdService service = new DnssdService("_http._tcp");
23 service.Name = "TestService";
24 service.Port = "1234";
25 service.RegisterService();
26 </code>
27 </example>
28
29 */
30 namespace Tizen.Network.Nsd {}