DevicePickerFilter
DevicePickerFilter
DevicePickerFilter
DevicePickerFilter
Class
Definition
Represents the filter used to determine which devices to show in the device picker. The filter parameters are OR-ed together to build the resulting filter.
public : sealed class DevicePickerFilter : IDevicePickerFilterpublic sealed class DevicePickerFilter : IDevicePickerFilterPublic NotInheritable Class DevicePickerFilter Implements IDevicePickerFilter// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Properties
SupportedDeviceClasses SupportedDeviceClasses SupportedDeviceClasses SupportedDeviceClasses
Gets a list of supported device classes to show in the picker. This defaults to an empty list (no filter). You can add device classes to this vector and filter the devices list to those that are in one or more of the provided classes.
public : IVector<DeviceClass> SupportedDeviceClasses { get; }public IList<DeviceClass> SupportedDeviceClasses { get; }Public ReadOnly Property SupportedDeviceClasses As IList<DeviceClass>// You can use this property in JavaScript.
- Value
- IVector<DeviceClass> IList<DeviceClass> IList<DeviceClass> IList<DeviceClass>
The list of device classes.
SupportedDeviceSelectors SupportedDeviceSelectors SupportedDeviceSelectors SupportedDeviceSelectors
Gets a list of AQS filter strings. This defaults to empty list (no filter). You can add one or more AQS filter strings to this vector and filter the devices list to those that meet one or more of the provided filters.
public : IVector<string> SupportedDeviceSelectors { get; }public IList<string> SupportedDeviceSelectors { get; }Public ReadOnly Property SupportedDeviceSelectors As IList<string>// You can use this property in JavaScript.
- Value
- IVector<PlatForm::String> IList<string> IList<string> IList<string>
The list of AQS filters.