Class NamedTagsDictionary
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.
Inheritance
Namespace:
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public class NamedTagsDictionary
Remarks
One dictionary can be associated with each cache item that might contain multiple named tags.
Constructors
Name | Description |
---|---|
NamedTagsDictionary() | Initialize the NameTagsDictionary object |
Properties
Name | Description |
---|---|
Count | Returns the number of items in named tags dictionary |
Methods
Name | Description |
---|---|
Add(String, Boolean) | Adds boolean value against a key in named tags dictionary. |
Add(String, Char) | Adds character value against a key in named tags dictionary. |
Add(String, DateTime) | Adds DateTime value against a key in named tags dictionary. |
Add(String, Decimal) | Adds decimal value against a key in named tags dictionary. |
Add(String, Double) | Adds double value against a key in named tags dictionary. |
Add(String, Int32) | Adds integer value against a key in named tags dictionary. |
Add(String, Int64) | Adds long value against a key in named tags dictionary. |
Add(String, Single) | Adds float value against a key in named tags dictionary. |
Add(String, String) | Adds string value against a key in named tags dictionary. |
Contains(String) | Search for the key in named tags dictionary and Return true if it is found and false in other case. |
GetEnumerator() | Returns an Enumerator that iterates through the entries of named tags dictionary. |
Remove(String) | Removes the key value pair from named tags dictionary |