StoreConfiguration.FilterUnsupportedSystemFeaturesAsync 方法

定义

在给定硬件功能列表的情况下,此方法返回仅包含当前设备支持的硬件功能的修改列表。

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))

参数

systemFeatures

IIterable<StoreSystemFeature>

IEnumerable<StoreSystemFeature>

StoreSystemFeature 对象的列表,这些对象表示在当前设备上要查询的硬件功能。

返回

一个异步操作,该操作在成功完成后返回当前设备支持的硬件功能的列表。 如果使用 异步编程,则结果类型是 StoreSystemFeature 项的只读列表/矢量。 (可以使用 IVectorView<StoreSystemFeature> for C++ 或 JavaScript 的 API、适用于 .NET 的 IReadOnlyList<StoreSystemFeature> 的 API.)

属性

适用于