StoreConfiguration.FilterUnsupportedSystemFeaturesAsync Method

Definition

Given a list of hardware features, this method returns a modified list that contains only the hardware features that are supported on the current device.

public:
 static IAsyncOperation<IVectorView<StoreSystemFeature> ^> ^ FilterUnsupportedSystemFeaturesAsync(IIterable<StoreSystemFeature> ^ systemFeatures);
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<IVectorView<StoreSystemFeature>> FilterUnsupportedSystemFeaturesAsync(IIterable<StoreSystemFeature> const& systemFeatures);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IReadOnlyList<StoreSystemFeature>> FilterUnsupportedSystemFeaturesAsync(IEnumerable<StoreSystemFeature> systemFeatures);
function filterUnsupportedSystemFeaturesAsync(systemFeatures)
Public Shared Function FilterUnsupportedSystemFeaturesAsync (systemFeatures As IEnumerable(Of StoreSystemFeature)) As IAsyncOperation(Of IReadOnlyList(Of StoreSystemFeature))

Parameters

systemFeatures

IIterable<StoreSystemFeature>

IEnumerable<StoreSystemFeature>

A list of StoreSystemFeature objects that represent the hardware features to be queried on the current device.

Returns

An asynchronous operation that, on successful completion, returns a list of hardware features that are supported on the current device. If you use Asynchronous programming, the result type is a read-only list/vector of StoreSystemFeature items. (You can use APIs of IVectorView<StoreSystemFeature> for C++ or JavaScript, APIs of IReadOnlyList<StoreSystemFeature> for .NET.)

Attributes

Applies to