ISearchQueryHelper::get_QueryContentProperties Method

Gets the list of properties included in the query when search terms do not explicitly specify a property.

Syntax

HRESULT get_QueryContentProperties(      
    LPWSTR *ppszContentProperties
);

Parameters

  • ppszContentProperties
    [out, retval] Receives a pointer to a comma-delimited, null-terminated Unicode string of content properties to search. If ppszContentProperties is NULL, all properties are searched.

Return Value

Returns S_OK if successful, or an error value otherwise.

Remarks

Search terms may or may not be explicitly prefixed by a property ("author:Irina" or just "Irina"). If SEARCH_ADVANCED_QUERY_SYNTAX or NO_QUERY_SYNTAX is set in ISearchQueryHelper::put_QuerySyntax, all search terms not prefixed by a property keyword are matched against the list of properties in ppszContentProperties.

The DSearch code sample, available on Code Gallery and the Windows 7 SDK, demonstrates how to create a class for a static console application to query Windows Search using the Microsoft.Search.Interop assembly for ISearchQueryHelper.

See Also

ISearchQueryHelper::put_QueryContentProperties, System Properties