RouteCollection.SetItem(Int32, RouteBase) Method

Definition

Replaces the route at the specified index.

protected:
 override void SetItem(int index, System::Web::Routing::RouteBase ^ item);
protected override void SetItem (int index, System.Web.Routing.RouteBase item);
override this.SetItem : int * System.Web.Routing.RouteBase -> unit
Protected Overrides Sub SetItem (index As Integer, item As RouteBase)

Parameters

index
Int32

The zero-based index of the route to replace.

item
RouteBase

The route to add at the specified index.

Exceptions

item is null.

item is already in the collection.

Remarks

When you add an unnamed route to the RouteCollection object, you cannot add a route that already is in the collection.

Use the GetReadLock method and the GetWriteLock method to make sure that you interact with the collection without conflicts from other processes.

Applies to

See also