QueryOptions.SetPropertyPrefetch 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定在 (执行查询时,系统应为查询结果集中的所有项提前加载的属性,而不是) 逐个检索它们。 如果指定了多个属性,则执行查询可能需要更长的时间,但对查询结果的后续属性检索会更快。
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 提供的所有属性。
要作为属性名称数组提前检索的属性的自定义列表。 使用系统属性名称指定属性,例如 System.Copyright 和 System.Image.ColorSpace。
要检索的其他属性的列表。