Added in API level 16
WifiP2pUpnpServiceInfo
open class WifiP2pUpnpServiceInfo : WifiP2pServiceInfo
kotlin.Any | ||
↳ | android.net.wifi.p2p.nsd.WifiP2pServiceInfo | |
↳ | android.net.wifi.p2p.nsd.WifiP2pUpnpServiceInfo |
A class for storing Upnp service information that is advertised over a Wi-Fi peer-to-peer setup. {@see android.net.wifi.p2p.WifiP2pManager#addLocalService} {@see android.net.wifi.p2p.WifiP2pManager#removeLocalService} {@see WifiP2pServiceInfo} {@see WifiP2pDnsSdServiceInfo}
Summary
Inherited constants | |
---|---|
Public methods | |
---|---|
open static WifiP2pUpnpServiceInfo! |
newInstance(uuid: String!, device: String!, services: MutableList<String!>!) Create UPnP service information object. |
Inherited functions | |
---|---|
Public methods
newInstance
Added in API level 16
open static fun newInstance(
uuid: String!,
device: String!,
services: MutableList<String!>!
): WifiP2pUpnpServiceInfo!
Create UPnP service information object.
Parameters | |
---|---|
uuid |
String!: a string representation of this UUID in the following format, as per RFC 4122. e.g) 6859dede-8574-59ab-9332-123456789012 |
device |
String!: a string representation of this device in the following format, as per UPnP Device Architecture1.1 e.g) urn:schemas-upnp-org:device:MediaServer:1 |
services |
MutableList<String!>!: a string representation of this service in the following format, as per UPnP Device Architecture1.1 e.g) urn:schemas-upnp-org:service:ContentDirectory:1 |
Return | |
---|---|
WifiP2pUpnpServiceInfo! |
UPnP service information object. |