FolderInformation.CreateFileQuery Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateFileQuery() |
Creates an object for performing filtered search queries for StorageFile in the current folder. |
CreateFileQuery(CommonFileQuery) |
Creates an object for performing filtered search queries for StorageFile objects in the current folder. Search results are grouped based on the specified file attribute. |
CreateFileQuery()
Creates an object for performing filtered search queries for StorageFile in the current folder.
public:
virtual StorageFileQueryResult ^ CreateFileQuery() = CreateFileQuery;
/// [Windows.Foundation.Metadata.Overload("CreateFileQueryOverloadDefault")]
StorageFileQueryResult CreateFileQuery();
[Windows.Foundation.Metadata.Overload("CreateFileQueryOverloadDefault")]
public StorageFileQueryResult CreateFileQuery();
function createFileQuery()
Public Function CreateFileQuery () As StorageFileQueryResult
Returns
An object for managing the search queries and accessing the results.
Implements
- Attributes
See also
Applies to
CreateFileQuery(CommonFileQuery)
Creates an object for performing filtered search queries for StorageFile objects in the current folder. Search results are grouped based on the specified file attribute.
public:
virtual StorageFileQueryResult ^ CreateFileQuery(CommonFileQuery query) = CreateFileQuery;
/// [Windows.Foundation.Metadata.Overload("CreateFileQuery")]
StorageFileQueryResult CreateFileQuery(CommonFileQuery const& query);
[Windows.Foundation.Metadata.Overload("CreateFileQuery")]
public StorageFileQueryResult CreateFileQuery(CommonFileQuery query);
function createFileQuery(query)
Public Function CreateFileQuery (query As CommonFileQuery) As StorageFileQueryResult
Parameters
- query
- CommonFileQuery
A value that specifies the folder attribute to use to group the search results.
Returns
An object for managing the search queries and accessing the results.
Implements
- Attributes