Help > Web Development > Object Reference > Object Reference > ISYSIndex > PerformFind Method
<a name="kanchor433"></a>ISYSIndex:PerformFind Method
Executes a command based query against the index returning an ISYSResultList object.

Note: This method is provided for compatibility with ISYS 6. Applications should use the ISYSSearch object.

Syntax
[VBScript]
function ISYSIndex.PerformFind(_
  string Query, _ 
  long Flags_ 
) as ISYSResultList
[C#]
IISYSResultList  IISYSIndex.PerformFind(
  string Query, 
  long Flags
);
[ColdFusion/Java]
IISYSResultList  IISYSIndex.PerformFind(
  java.lang.String Query, 
  long Flags
) throws ComException;
Parameters
Querystring that specifies the query to perform
FlagsFlags specifying how the query is to be processed.
isysQuerySynonym1Perform query with synonym expansion
isysQueryConflate2Perform query with word tense conflation
isysQueryThesaurus8Perform query using WordNet thesaurus
isysQueryConflateBroad65538Perform query using broad word tense conflation
isysQueryConflatePlurals131074Perform query using narrow word tense conflation
QueryConflatePlurals262146Perform query using plural word tense conflation

Examples
[VBScript]
<% dim index, results set index = Application("ISYS").OpenIndex("c:\index") set results = index.PerformFind(Request("search"), QueryConflate) %>
See Also