Inserts an element into the DimSearchRefinementConfigList at the specified index.

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

Syntax

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

Parameters

index
Type: System..::..Int32
The zero-based index at which item should be inserted.
item
Type: System..::..Object
The Object to insert.

Implements

IList..::..Insert(Int32, Object)

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionindex is out of range.
System..::..NotSupportedException The DimSearchRefinementConfigList is read-only.

-or-

The DimSearchRefinementConfigList has a fixed-size.

See Also