AddToIndexByCrawling Method

UltimateSearch

Collapse imageExpand ImageCopy imageCopyHover image
Add to index by crawling the specified urls. It will crawl and index the pages based on the configuration in the UltimateSearch.config file. It will also follow the links in those pages to keep crawling and indexing. If you don't want it to follow the links in those pages, please use the "BeforeIndex" event handler in order to override the "noFollow" flag programmatically. You can check the "Events" sample to learn more.

Namespace: Karamasoft.WebControls.UltimateSearch
Assembly: UltimateSearch (in UltimateSearch.dll) Version: 3.7.4186.26690

Syntax

C#
public void AddToIndexByCrawling(
	string[] urlList
)
Visual Basic
Public Sub AddToIndexByCrawling ( _
	urlList As String() _
)
Visual C++
public:
void AddToIndexByCrawling(
	array<String^>^ urlList
)

Parameters

urlList
Type: array<System..::..String>[]()[][]
List of urls to start crawling with.

See Also