Indexes a list of item values and stores them in an index dedicated to the specified domain.

Namespace: Simol.Indexing
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
void IndexItems(
	string domain,
	List<IndexValues> items
)
Visual Basic
Sub IndexItems ( _
	domain As String, _
	items As List(Of IndexValues) _
)
Visual C++
void IndexItems(
	String^ domain, 
	List<IndexValues^>^ items
)

Parameters

domain
Type: System..::..String
The domain being indexed.
items
Type: System.Collections.Generic..::..List<(Of <(<'IndexValues>)>)>
The items to index.

See Also