ConfigurationAttributeSchemaCollection.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 schema from the collection.
Overloads
Item[Int32] |
Gets the specified configuration attribute schema at the specified index. |
Item[String] |
Gets the specified configuration attribute schema that has the specified name. |
Item[Int32]
Gets the specified configuration attribute schema at the specified index.
public:
property Microsoft::Web::Administration::ConfigurationAttributeSchema ^ default[int] { Microsoft::Web::Administration::ConfigurationAttributeSchema ^ get(int index); };
public Microsoft.Web.Administration.ConfigurationAttributeSchema this[int index] { get; }
member this.Item(int) : Microsoft.Web.Administration.ConfigurationAttributeSchema
Default Public ReadOnly Property Item(index As Integer) As ConfigurationAttributeSchema
Parameters
- index
- Int32
The index of the ConfigurationAttributeSchema object to be returned.
Property Value
The ConfigurationAttributeSchema object at the specified index.
Remarks
You can use the overloads of the Item[] property to return a specific ConfigurationAttributeSchema object in the collection. This overload returns a specific schema in the collection by the collection index.
Applies to
Item[String]
Gets the specified configuration attribute schema that has the specified name.
public:
property Microsoft::Web::Administration::ConfigurationAttributeSchema ^ default[System::String ^] { Microsoft::Web::Administration::ConfigurationAttributeSchema ^ get(System::String ^ name); };
public Microsoft.Web.Administration.ConfigurationAttributeSchema this[string name] { get; }
member this.Item(string) : Microsoft.Web.Administration.ConfigurationAttributeSchema
Default Public ReadOnly Property Item(name As String) As ConfigurationAttributeSchema
Parameters
- name
- String
The name of the ConfigurationAttributeSchema object to be returned.
Property Value
The ConfigurationAttributeSchema object that has the specified name.
Remarks
You can use the overloads of the Item[] property to return a specific ConfigurationAttributeSchema object in the collection. This overload returns a specific schema in the collection by name. The specific module performs a string comparison that ignores the case of the strings being compared.