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)

abstract InsertItem : 
        index:int * 
        item:IViewEngine -> unit  
override InsertItem : 
        index:int * 
        item:IViewEngine -> unit

Parameters

index
Type: System.Int32

The zero-based index at which item should be inserted.

item
Type: System.Web.Mvc.IViewEngine

The object to insert.

ExceptionCondition
ArgumentOutOfRangeException

index is less than zero.

-or-

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

ArgumentNullException

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

Show: