Represents a dictionary that can be associated with the cache items to provide extra information so that items are grouped together and can be queried efficiently based on the provided information.

Namespace: Alachisoft.NCache.Runtime.Caching
Assembly: Alachisoft.NCache.Runtime (in Alachisoft.NCache.Runtime.dll) Version: 4.1.0.0 (4.1.0.0)

Syntax

C#
public class NamedTagsDictionary
Visual Basic
Public Class NamedTagsDictionary
Visual C++
public ref class NamedTagsDictionary

Remarks

One dictionary can be associated with each cache item that might contain multiple named tags.

Examples

To create an instance of NamedTagsDictionary class and populate it you can use code as follows:
CopyC#
NamedTagsDictionary namedTags = new NamedTagsDictionary();
namedTags.Add("myInteger", 10);
namedTags.Add("myString", "hello");

Inheritance Hierarchy

System..::..Object
  Alachisoft.NCache.Runtime.Caching..::..NamedTagsDictionary

See Also