DataCacheBulkNotificationCallback Delegate

 

Specifies a callback which is called with a list of cache operations. Not supported in Windows Azure Shared Caching.

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

Syntax

public delegate void DataCacheBulkNotificationCallback(
    string cacheName,
    IEnumerable<DataCacheOperationDescriptor> operations,
    DataCacheNotificationDescriptor nd
)
public delegate void DataCacheBulkNotificationCallback(
    String^ cacheName,
    IEnumerable<DataCacheOperationDescriptor^>^ operations,
    DataCacheNotificationDescriptor^ nd
)
type DataCacheBulkNotificationCallback = 
    delegate of 
        cacheName:string *
        operations:IEnumerable<DataCacheOperationDescriptor> *
        nd:DataCacheNotificationDescriptor -> unit
Public Delegate Sub DataCacheBulkNotificationCallback (
    cacheName As String,
    operations As IEnumerable(Of DataCacheOperationDescriptor),
    nd As DataCacheNotificationDescriptor
)

Parameters

  • cacheName
    Type: System.String

    The name of the cache where the object is stored.

See Also

Microsoft.ApplicationServer.Caching Namespace

Return to top