DataCacheStoreProvider Class

 

An abstract class that must implemented by read-through or write-behind providers.

Namespace:   Microsoft.ApplicationServer.Caching
Assembly:  Microsoft.ApplicationServer.Caching.Core (in Microsoft.ApplicationServer.Caching.Core.dll)

Inheritance Hierarchy

System.Object
  Microsoft.ApplicationServer.Caching.DataCacheStoreProvider

Syntax

public abstract class DataCacheStoreProvider : IDisposable
public ref class DataCacheStoreProvider abstract : IDisposable
[<AbstractClass>]
type DataCacheStoreProvider = 
    class
        interface IDisposable
    end
Public MustInherit Class DataCacheStoreProvider
    Implements IDisposable

Constructors

Name Description
System_CAPS_protmethod DataCacheStoreProvider()

Creates a new instance of the DataCacheStoreProvider class.

Methods

Name Description
System_CAPS_pubmethod Delete(Collection<DataCacheItemKey>)

This Delete overload is called for multiple items that are deleted from the cache associated with the read-through or write-behind provider.

System_CAPS_pubmethod Delete(DataCacheItemKey)

This Delete overload is called for a single item that is deleted from the cache associated with the read-through or write-behind provider.

System_CAPS_pubmethod Dispose()

Used to dispose the DataCacheStoreProvider class.

System_CAPS_protmethod Dispose(Boolean)

Used to dispose the DataCacheStoreProvider class.

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod Read(DataCacheItemKey)

This Read overload is called to read a single item from the read-through provider.

System_CAPS_pubmethod Read(ReadOnlyCollection<DataCacheItemKey>, IDictionary<DataCacheItemKey, DataCacheItem>)

This Read overload is called to read a multiple items from the read-through provider.

System_CAPS_pubmethod ToString()

(Inherited from Object.)

System_CAPS_pubmethod Write(DataCacheItem)

This Write method is called to write a single item to the backend associated with the write-behind provider.

System_CAPS_pubmethod Write(IDictionary<DataCacheItemKey, DataCacheItem>)

This Write method is called to write multiple items to the backend associated with the write-behind provider.

Remarks

For more information see .98b57b0f-9c62-43d8-954e-9f37432aa4ca

Applies only to Microsoft AppFabric 1.1 for Windows Server.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.ApplicationServer.Caching Namespace

Return to top