DataCacheStoreProvider.Read Method (ReadOnlyCollection<DataCacheItemKey>, IDictionary<DataCacheItemKey, DataCacheItem>)
This Read overload is called to read a multiple items from the read-through provider.
Namespace: Microsoft.ApplicationServer.Caching
Assembly: Microsoft.ApplicationServer.Caching.Core (in Microsoft.ApplicationServer.Caching.Core.dll)
Syntax
public abstract void Read(
ReadOnlyCollection<DataCacheItemKey> keys,
IDictionary<DataCacheItemKey, DataCacheItem> items
)
public:
virtual void Read(
ReadOnlyCollection<DataCacheItemKey^>^ keys,
IDictionary<DataCacheItemKey^, DataCacheItem^>^ items
) abstract
abstract Read :
keys:ReadOnlyCollection<DataCacheItemKey> *
items:IDictionary<DataCacheItemKey, DataCacheItem> -> unit
Public MustOverride Sub Read (
keys As ReadOnlyCollection(Of DataCacheItemKey),
items As IDictionary(Of DataCacheItemKey, DataCacheItem)
)
Parameters
keys
Type: System.Collections.ObjectModel.ReadOnlyCollection<DataCacheItemKey>A collection of DataCacheItemKey objects for the objects that should be read.
items
Type: System.Collections.Generic.IDictionary<DataCacheItemKey, DataCacheItem>A dictionary of DataCacheItemKey objects and DataCacheItem objects that is used to return the results of the read request.
Remarks
For more information, see .3684b772-b8da-4c16-a9bc-fb037d30c280
Applies only to Microsoft AppFabric 1.1 for Windows Server.
See Also
Read Overload
DataCacheStoreProvider Class
Microsoft.ApplicationServer.Caching Namespace
Return to top