UrlMappingCollection.Item[] Property

Definition

Gets or sets a UrlMapping in the collection.

Overloads

Item[Int32]

Gets or sets the UrlMapping object at the specified index.

Item[String]

Gets the UrlMapping object with the specified name.

Item[Int32]

Gets or sets the UrlMapping object at the specified index.

public:
 property System::Web::Configuration::UrlMapping ^ default[int] { System::Web::Configuration::UrlMapping ^ get(int index); void set(int index, System::Web::Configuration::UrlMapping ^ value); };
public System.Web.Configuration.UrlMapping this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.UrlMapping with get, set
Default Public Property Item(index As Integer) As UrlMapping

Parameters

index
Int32

The index of the object to get.

Property Value

The object at the specified index.

Applies to

Item[String]

Gets the UrlMapping object with the specified name.

public:
 property System::Web::Configuration::UrlMapping ^ default[System::String ^] { System::Web::Configuration::UrlMapping ^ get(System::String ^ name); };
public System.Web.Configuration.UrlMapping this[string name] { get; }
member this.Item(string) : System.Web.Configuration.UrlMapping
Default Public ReadOnly Property Item(name As String) As UrlMapping

Parameters

name
String

The name of the collection object.

Property Value

The collection object that has the specified name.

Applies to