LDAP Client.Net

EntryCollection.Item Property

Entry in this collection.

[C#] In C#, this property is the indexer for the EntryCollection class.

[Visual Basic]
MustOverride Public Default Property ReadOnly Item( _ 
   ByVal index As Integer _ 
) As Entry
[C#]
public abstract Entry this[
   int index
] { get; }
[C++]
public: abstract __property Entry* get_Item(
   int index
);
[JScript]
returnValue = EntryCollectionObject.Item( index );
-or-
returnValue = EntryCollectionObject( index );

[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 property whose type is Object and whose index type is String.

See Also

EntryCollection Class | LdapServices.Ldap Namespace