Removes the specified items from the cache.

Namespace:  Mindroute.Core.Caching
Assembly:  Mindroute.Core (in Mindroute.Core.dll) Version: 1.0.0.0 (1.0.0)

Syntax

C#
public void Remove(
	CacheRegion region,
	params string[] keys
)
Visual Basic (Declaration)
Public Sub Remove ( _
	region As CacheRegion, _
	ParamArray keys As String() _
)

Parameters

region
Type: Mindroute.Core.Caching..::.CacheRegion
The cache region from which to remove the cache item.
keys
Type: array< System..::.String >[]()[]
The identifiers for the cache items to remove.

Implements

ICache..::.Remove(CacheRegion, array<String>[]()[])

See Also