ResubmitFlag enumeration

Applies to: Microsoft FAST Search Server 2010 for SharePoint
Specifies the criteria for automatically resubmitting a query that yielded no results. Each member value indicates an action to be taken if no hits are found. By combining these values you indicate that multiple modifications shall be performed. The effect of an automatic resubmit is that the query is modified and automatically re-evaluated prior to returning the result to the client.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:  Microsoft.Office.Server.Search.Query
Assembly:  Microsoft.Office.Server.Search (in Microsoft.Office.Server.Search.dll)

Syntax

'Declaration
<FlagsAttribute> _
Public Enumeration ResubmitFlag
'Usage
Dim instance As ResubmitFlag
[FlagsAttribute]
public enum ResubmitFlag

Members

Member name Description
NoResubmit Do not resubmit the query, but return with zero results.If this value is set, any other ResubmitFlag values are ignored.
EnableSpellcheckOnResubmit Resubmit the query with automatic spell correction enabled. This corresponds to evaluating the query with the FASTSearchRuntime.EnableSpellCheck property set to On when re-evaluating the query.
EnableSpellcheckSuggestOnResubmit Resubmit the query with spell check enabled in suggest mode. This corresponds to evaluating the query with the FASTSearchRuntime.EnableSpellCheck property set to Suggest when re-evaluating the query. This option will still return a query result with zero hits.
EnableStemmingOnResubmit Resubmit the query with stemming enabled. This corresponds to evaluating the query with the Query.EnableStemming property set to True when re-evaluating the query.
AddSynonymsAutomatically

See also

Reference

Microsoft.Office.Server.Search.Query namespace