Requests that the spider stop crawling web sites
C#
public void StopCrawl(
bool bWaitForCrawlDone
);
Remarks
Because the spider runs on a different thread, it make take some time for the crawl to stop. Call StopCrawl(true) to ensure that the Spider has stopped when StopCrawl returns. StopCrawl(false) will request that the crawl stop and will return immediately.
See Also