Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Delete a bunch of data from the cache. This prevents several calls from the client to the server. Only one single call is done with all relevant key's for the server node.

Namespace:  SharedCache.WinServiceCommon.Provider.Cache
Assembly:  SharedCache.WinServiceCommon (in SharedCache.WinServiceCommon.dll) Version: 3.0.5.1 (3.0.5.1)

Syntax

C#
public abstract void MultiDelete(
	List<string> keys
)
Visual Basic (Declaration)
Public MustOverride Sub MultiDelete ( _
	keys As List(Of String) _
)
Visual C++
public:
virtual void MultiDelete(
	List<String^>^ keys
) abstract

Parameters

keys
Type: System.Collections.Generic..::.List<(Of <(String>)>)
A List of String with all requested keys to delete

Remarks

[Missing <remarks> documentation for "M:SharedCache.WinServiceCommon.Provider.Cache.IndexusProviderBase.MultiDelete(System.Collections.Generic.List{System.String})"]

See Also