DataCacheItem.Tags Property

 

A generic list of tags associated with the cached object.

Namespace:   Microsoft.ApplicationServer.Caching
Assembly:  Microsoft.ApplicationServer.Caching.Core (in Microsoft.ApplicationServer.Caching.Core.dll)

Syntax

public ReadOnlyCollection<DataCacheTag> Tags { get; }
public:
property ReadOnlyCollection<DataCacheTag^>^ Tags {
    ReadOnlyCollection<DataCacheTag^>^ get();
}
member Tags : ReadOnlyCollection<DataCacheTag> with get
Public ReadOnly Property Tags As ReadOnlyCollection(Of DataCacheTag)

Property Value

Type: System.Collections.ObjectModel.ReadOnlyCollection<DataCacheTag>

An generic list of DataCacheTag objects associated with the cached object.

Remarks

You can associate one or more tags to each cache object. Tag-based object retrieval is only available for those objects stored in regions.

Tags are not supported in Windows Azure Shared Caching.

See Also

DataCacheItem Class
Microsoft.ApplicationServer.Caching Namespace

Return to top