[To be supplied.]
[C#] In C#, this member is the indexer for the IConfigCollection class.
[Visual Basic] Overloads Default Property Item( _ ByVal Index As Integer _ ) As IConfigItem [C#] IConfigItem this[ int Index ] {get; set;} [C++] IConfigItem* get_Item( int Index ) = 0;void set_Item( int Index, IConfigItem* ) = 0; [JScript] abstract returnValue = IConfigCollectionObject.Item(Index); IConfigCollectionObject.Item(Index) = returnValue; -or- abstract returnValue = IConfigCollectionObject(Index); IConfigCollectionObject(Index) = returnValue;
[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed Item property whose type is Object and whose index type is String.
IConfigCollection Interface | IConfigCollection Members | System.Configuration Namespace | IConfigCollection.Item Overload List