ViewEngineCollection.InsertItem Method

Inserts an element into the collection at the specified index.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
Protected Overrides Sub InsertItem ( _
    index As Integer, _
    item As IViewEngine _
)
protected override void InsertItem(
    int index,
    IViewEngine item
)
protected:
virtual void InsertItem(
    int index, 
    IViewEngine^ item
) override

Parameters

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

Exceptions

Exception Condition
ArgumentOutOfRangeException

index is less than zero.

-or-

index is greater than the number of items in the collection.

ArgumentNullException

The item parameter is null reference (Nothing in Visual Basic).

See Also

Reference

ViewEngineCollection Class

System.Web.Mvc Namespace