Inserts the specified
CopyC#
DimSearchRefinementConfig
at the specified position in this list. Shifts the element currently at that position (if any) and any subsequent elements to the right (adds one to their indices).

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (0.0.0.0)

Syntax

C#
public virtual void Add(
	int index,
	Object elementAt
)
Visual Basic
Public Overridable Sub Add ( _
	index As Integer, _
	elementAt As Object _
)
Visual C++
public:
virtual void Add(
	int index, 
	Object^ elementAt
)

Parameters

index
Type: System..::..Int32
The offset of the element
elementAt
Type: System..::..Object
The element to be inserted.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeException If index is out of range.

See Also