QueryOptions.SetPropertyPrefetch 方法

定义

指定在 (执行查询时,系统应为查询结果集中的所有项提前加载的属性,而不是) 逐个检索它们。 如果指定了多个属性,则执行查询可能需要更长的时间,但对查询结果的后续属性检索会更快。

public:
 virtual void SetPropertyPrefetch(PropertyPrefetchOptions options, IIterable<Platform::String ^> ^ propertiesToRetrieve) = SetPropertyPrefetch;
void SetPropertyPrefetch(PropertyPrefetchOptions const& options, IIterable<winrt::hstring> const& propertiesToRetrieve);
public void SetPropertyPrefetch(PropertyPrefetchOptions options, IEnumerable<string> propertiesToRetrieve);
function setPropertyPrefetch(options, propertiesToRetrieve)
Public Sub SetPropertyPrefetch (options As PropertyPrefetchOptions, propertiesToRetrieve As IEnumerable(Of String))

参数

options
PropertyPrefetchOptions

一个 值,该值指定要提前检索的属性集。

可能的属性集与 StorageFile 类中可用的属性集匹配。 例如, PropertyPrefetchOptions.BasicProperties 将提前检索通过 StorageFile.GetBasicPropertiesAsync 提供的所有属性。

propertiesToRetrieve

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

要作为属性名称数组提前检索的属性的自定义列表。 使用系统属性名称指定属性,例如 System.CopyrightSystem.Image.ColorSpace

要检索的其他属性的列表。

适用于

另请参阅