Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Based on a list of key's the client receives a dictonary with all available data depending on the keys.

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

Syntax

C#
public abstract IDictionary<string, byte[]> MultiGet(
	List<string> keys,
	string host
)
Visual Basic (Declaration)
Public MustOverride Function MultiGet ( _
	keys As List(Of String), _
	host As String _
) As IDictionary(Of String, Byte())
Visual C++
public:
virtual IDictionary<String^, array<unsigned char>^>^ MultiGet(
	List<String^>^ keys, 
	String^ host
) abstract

Parameters

keys
Type: System.Collections.Generic..::.List<(Of <(String>)>)
A List of String with all requested keys.
host
Type: System..::.String
The host to request the key's from

Return Value

A IDictionary with String and Byte array element.

Remarks

[Missing <remarks> documentation for "M:SharedCache.WinServiceCommon.Provider.Server.IndexusServerProviderBase.MultiGet(System.Collections.Generic.List{System.String},System.String)"]

See Also