Demonstrates opening a static index or a chain of indexes.
// Fetch the ISYS engine from application scope
IISYSAsp isys = (IISYSAsp) Application["ISYS"];
// Open a single index
Application["ISYSIndex"] = isys.OpenIndex(@"c:\index");
// Open a dynamic chain index
Application["ISYSIndexChain"] = isys.OpenIndex(@"c:\index1;c:\index2");
|