ConfigurationEnumValueCollection.Item[] Property

Definition

Gets the configuration enumeration value.

Overloads

Item[Int32]

Gets the configuration enumeration value at the specified index in the collection.

Item[String]

Gets the configuration enumeration value that has the specified name in the current collection.

Item[Int32]

Gets the configuration enumeration value at the specified index in the collection.

public:
 property Microsoft::Web::Administration::ConfigurationEnumValue ^ default[int] { Microsoft::Web::Administration::ConfigurationEnumValue ^ get(int index); };
public Microsoft.Web.Administration.ConfigurationEnumValue this[int index] { get; }
member this.Item(int) : Microsoft.Web.Administration.ConfigurationEnumValue
Default Public ReadOnly Property Item(index As Integer) As ConfigurationEnumValue

Parameters

index
Int32

The index of the configuration enumeration value in the current collection.

Property Value

The ConfigurationEnumValue object at the specified index in the current collection.

Applies to

Item[String]

Gets the configuration enumeration value that has the specified name in the current collection.

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

Parameters

name
String

The name of the configuration enumeration value in the current collection.

Property Value

The ConfigurationEnumValue object that has the specified name in the current collection.

Applies to