Creating Tags
To utilize the APIs, include the following namespace in your application:
Alachisoft.NCache.Runtime.Caching.
Tag
is a class provided by NCache. This class can be used to associate tags with a
particular data.
// Create a Tag array and specify tags.
Tag[] productTags = new Tag[2];
productTags[0] = new Tag("Product");
productTags[1] = new Tag("Beverages");