ConfigurationAttributeCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the specified configuration attribute.
Overloads
Item[Int32] |
Gets the specified configuration attribute at the specified index. |
Item[String] |
Gets the specified configuration attribute that has the specified name. |
Item[Int32]
Gets the specified configuration attribute at the specified index.
public:
property Microsoft::Web::Administration::ConfigurationAttribute ^ default[int] { Microsoft::Web::Administration::ConfigurationAttribute ^ get(int index); };
public Microsoft.Web.Administration.ConfigurationAttribute this[int index] { get; }
member this.Item(int) : Microsoft.Web.Administration.ConfigurationAttribute
Default Public ReadOnly Property Item(index As Integer) As ConfigurationAttribute
Parameters
- index
- Int32
The index of the ConfigurationAttribute object to be returned.
Property Value
The ConfigurationAttribute object at the specified index.
Applies to
Item[String]
Gets the specified configuration attribute that has the specified name.
public:
property Microsoft::Web::Administration::ConfigurationAttribute ^ default[System::String ^] { Microsoft::Web::Administration::ConfigurationAttribute ^ get(System::String ^ name); };
public Microsoft.Web.Administration.ConfigurationAttribute this[string name] { get; }
member this.Item(string) : Microsoft.Web.Administration.ConfigurationAttribute
Default Public ReadOnly Property Item(name As String) As ConfigurationAttribute
Parameters
- name
- String
The name of the ConfigurationAttribute object to be returned.
Property Value
The ConfigurationAttribute object with the specified name.