Skip to content

Latest commit

 

History

History
 
 

ContentIndexer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Content indexer sample

This sample shows how to add, update, and retrieve items and properties from the indexer. Two methods of doing so are demonstrated. The first is using the ContentIndexer APIs to directly interface with the indexer. The second is writing .appcontent-ms files, which contain information to be indexed that the indexer will pick up once the file has been written.

The sample demonstrates these tasks:

  1. Add an item to the system index

    Uses the AddAsync method to make app content searchable in the system index.

  2. Update and delete items in the index

    Uses the UpdateAsync method to update an item and the DeleteAsync, DeleteMultipleAsync, and DeleteAllAsync methods to remove content from the system index.

  3. Get items from the system index by using a query

    Uses the CreateQuery and GetAsync methods to retrieve items from the system index.

  4. Check the revision number of the indexer

    Uses the Revision property and the app's LocalSettings to check if the app's expected revision number matches the actual index revision number.

  5. Add app content files to be indexed

    Copies app-specific files to the app's LocalState\Indexed folder to make app content searchable in the system index.

  6. Remove file content from the system index

    Deletes app-specific files from the app's LocalState\Indexed folder to remove app content from the system index.

  7. Get indexed file properties

    Uses the CreateFileQuery and CreateFileQueryWithOptions methods to query the system index for file properties.

Note The Windows universal samples require Visual Studio 2015 to build and Windows 10 to execute.

To obtain information about Windows 10 development, go to the Windows Dev Center

To obtain information about Microsoft Visual Studio 2015 and the tools for developing Windows apps, go to Visual Studio 2015

Related topics

Reference

ContentIndexer

ContentIndexerQuery

CreateFileQuery

CreateFileQueryWithOptions

System requirements

Client: Windows 10

Server: Windows Server 2016 Technical Preview

Phone: Windows 10

Build the sample

  1. If you download the samples ZIP, be sure to unzip the entire archive, not just the folder with the sample you want to build.
  2. Start Microsoft Visual Studio 2015 and select File > Open > Project/Solution.
  3. Starting in the folder where you unzipped the samples, go to the Samples subfolder, then the subfolder for this specific sample, then the subfolder for your preferred language (C++, C#, or JavaScript). Double-click the Visual Studio 2015 Solution (.sln) file.
  4. Press Ctrl+Shift+B, or select Build > Build Solution.

Run the sample

The next steps depend on whether you just want to deploy the sample or you want to both deploy and run it.

Deploying the sample

  • Select Build > Deploy Solution.

Deploying and running the sample

  • To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or select Debug > Start Without Debugging.