Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Adding a bunch of data to the cache, prevents to make several calls from the client to the server. All data is tranported with a [!:Dictonary] with a String and Byte array combination.

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 MultiAdd(
	IDictionary<string, byte[]> data
)
Visual Basic (Declaration)
Public MustOverride Sub MultiAdd ( _
	data As IDictionary(Of String, Byte()) _
)
Visual C++
public:
virtual void MultiAdd(
	IDictionary<String^, array<unsigned char>^>^ data
) abstract

Parameters

data
Type: System.Collections.Generic..::.IDictionary<(Of <(String, array< Byte >[]()[]>)>)
The data to add as a IDictionary

Remarks

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

See Also