Caching Library

CacheItemMetadataList.Item Property

Restituisce un elemento

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

[Visual Basic]
Public Default Property ReadOnly Item( _ 
   ByVal index As Integer _ 
) As CacheItemMetadata
[C#]
public CacheItemMetadata this[
   int index
] { get; }
[C++]
public: __property CacheItemMetadata* get_Item(
   int index
);
[JScript]
returnValue = CacheItemMetadataListObject.Item( index );
-or-
returnValue = CacheItemMetadataListObject( 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.

Parameters

index
La posizione dell'elemento richiesto

See Also

CacheItemMetadataList Class | Caching Namespace