dtSearch Text Retrieval Engine .NET interface

SpiderInit Class

Initialization and termination of the Spider.

For a list of all members of this type, see SpiderInit Members.

System.Object
   dtSearch.Spider.SpiderInit

public class SpiderInit

Remarks

Before the first time the Spider is used in a program, SpiderInit::Initialized must be called, and SpiderInit::Terminate must be called before the program exits.

This example demonstrates a typical sequence in a GUI application. The Spider is initialized, the application's main form runs, and then the Spider is terminated after the main form closes.
dtSearch.Spider.SpiderInit.Initialize();
Application.Run(new Form1());
// Must be called once after the last time the Spider will be used
dtSearch.Spider.SpiderInit.Terminate();

Requirements

Namespace: dtSearch.Spider

Assembly: dtSearch.Spider (in dtSearch.Spider.dll)

See Also

SpiderInit Members | dtSearch.Spider Namespace