DataCacheItem.Tags Property

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

A generic list of tags associated with the cached object.

Namespace: Microsoft.Data.Caching
Assembly: CacheBaseLibrary (in cachebaselibrary.dll)

Syntax

'Declaration
Public ReadOnly Property Tags As List(Of DataCacheTag)
'Usage
Dim instance As DataCacheItem
Dim value As List(Of DataCacheTag)

value = instance.Tags
public List<DataCacheTag> Tags { get; }
public:
property List<DataCacheTag^>^ Tags {
    List<DataCacheTag^>^ get ();
}
/** @property */
public List<DataCacheTag> get_Tags ()
public function get Tags () : List<DataCacheTag>

Property Value

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. For more information, see Tag-Based Methods (Velocity).

See Also

Reference

DataCacheItem Class
DataCacheItem Members
Microsoft.Data.Caching Namespace