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。
要擷取的其他屬性清單。