Removes the cached objects that have all the same tags in common. (Returns the Union set.)

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

Syntax

C#
public override void RemoveByAllTags(
	Tag[] tags
)
Visual Basic
Public Overrides Sub RemoveByAllTags ( _
	tags As Tag() _
)
Visual C++
public:
virtual void RemoveByAllTags(
	array<Tag^>^ tags
) override

Parameters

tags
Type: array<Alachisoft.NCache.Runtime.Caching..::..Tag>[]()[][]
An array of Tag to search with.

Examples

The following example demonstrates how to remove the objects that have all of the specified tags in common.
CopyC#
Cache cache = NCache.InitializeCache("myCache");
Tag[] tags = new Tag[2];
tags[0] = new Tag("Alpha");
tags[1] = new Tag("Beta");
cache.RemoveByAllMatchingTags(tags);

See Also