Returns the class selection string that you can use to enumerate proximity devices.
Syntax
var string = Windows.Networking.Proximity.ProximityDevice.getDeviceSelector();
Parameters
This method has no parameters.
Return value
Type: String [JavaScript] | System.String [.NET] | Platform::String [C++]
The class selection string for proximity devices.
Remarks
You can enumerate proximity devices by passing the class selection string returned by the GetDeviceSelector method to the FindAllAsync or CreateWatcher method.
If your computer supports Proximity and has an NFC device installed, which is commonly the case, then the GetDefault method will return the device that supports NFC. You can also determine whether your computer has an NFC device installed by querying the device information for the property "{FB3842CD-9E2A-4F83-8FCC-4B0761139AE9} 2". In the DeviceInformation.Properties object returned from the query the value for the "{FB3842CD-9E2A-4F83-8FCC-4B0761139AE9} 2" key contains and array of strings that describe the capabilities of the proximity device. If one of the strings is "StandardNfc", then the device supports NFC protocols such as NDEF. For more information on how to query for the properties of a device, see How to retrieve additional properties for a device or PnP object.
Examples
var proximityDevice; function initializeProximity() { var selectorString = Windows.Networking.Proximity.ProximityDevice.getDeviceSelector(); var propertiesToRetrieve = new Array(); propertiesToRetrieve.push("{FB3842CD-9E2A-4F83-8FCC-4B0761139AE9} 2"); Windows.Devices.Enumeration.DeviceInformation.findAllAsync(selectorString, propertiesToRetrieve).done( function (deviceInfoCollection) { if (deviceInfoCollection.size == 0) { statusDiv.innerHTML = "No proximity devices found."; } else { statusDiv.innerHTML = "Proximity Device id = " + deviceInfoCollection[0].id; proximityDevice = Windows.Networking.Proximity.ProximityDevice.fromId(deviceInfoCollection[0].id); } }); }
Requirements
|
Minimum supported client | Windows 8 |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Minimum supported phone | Windows Phone 8 |
|
Namespace |
|
|
Metadata |
|
|
Capabilities |
|
See also
- DeviceId
- ProximityDevice
- Proximity and Tapping (JavaScript)
- Proximity and Tapping (C#/VB/C++)
- Samples
- Proximity sample
Build date: 2/25/2013