Help > Web Development > Object Reference > Object Reference > ISYSConceptNode > PerformFind Method
<a name="kanchor293"></a>ISYSConceptNode:PerformFind Method
Execute the query associated with this node against the given index.

Syntax
[VBScript]
function ISYSConceptNode.PerformFind(_
  ISYSIndex  Index_ 
) as ISYSResultList
[C#]
IISYSResultList  IISYSConceptNode.PerformFind(
  IISYSIndex  Index
);
[ColdFusion/Java]
IISYSResultList  IISYSConceptNode.PerformFind(
  IISYSIndex  Index
) throws ComException;
Parameters
IndexThe ISYSIndex object that the query is to be executed against.

Examples
[VBScript]
<% ' Find the concept node "HR Manual" Set Concept = Application("ISYSConcept").FindNode("HR Manual") ' Set the query source ISYSSearch.QuerySource = Concept ' Execute the search Set Results = ISYSSearch.Execute %>
[VBScript (deprecated)]
<% ' Find the concept node "HR Manual" set concept = Application("ISYSConcept").FindNode("HR Manual") if NOT concept = Nothing then set results = concept.PerformFind(Application("ISYSIndex")) end if %>
Remarks
ISYSConceptNode.PerformFind has been replaced with the ISYSSearch object. To execute a search against a ConceptNode, simply set the node to be the QuerySource of an ISYSSearch.