Share via


StorageProviderSuggestionsQueryOptions.PropertiesToFetch Property

Definition

Gets the vector of additional properties to return for each query result. These are canonical property names from the Windows Property System (e.g. System.FileName or System.DateModified).

Important

The Windows.Storage.Provider.StorageProviderSuggestionsQueryOptions API is part of a Limited Access Feature (see LimitedAccessFeatures class). For more information or to request an unlock token, please use the LAF Access Token Request Form.

public:
 property IVectorView<Platform::String ^> ^ PropertiesToFetch { IVectorView<Platform::String ^> ^ get(); };
IVectorView<winrt::hstring> PropertiesToFetch();
/// [Windows.Foundation.Metadata.Experimental]
/// [get: Windows.Foundation.Metadata.Experimental]
IVectorView<winrt::hstring> PropertiesToFetch();
public IReadOnlyList<string> PropertiesToFetch { get; }
[Windows.Foundation.Metadata.Experimental]
public IReadOnlyList<string> PropertiesToFetch { [Windows.Foundation.Metadata.Experimental] get; }
var iVectorView = storageProviderSuggestionsQueryOptions.propertiesToFetch;
Public ReadOnly Property PropertiesToFetch As IReadOnlyList(Of String)

Property Value

IVectorView<String>

IReadOnlyList<String>

IVectorView<Platform::String>

IVectorView<winrt::hstring>

The vector of additional properties to return for each query result.

Attributes

Remarks

The set of requested properties may vary depending on the SuggestionKind assigned to the query, or the OS version. Unsupported or unrecognized properties should be ignored by the provider.

Applies to

See also