DataCacheBulkNotificationCallback Delegate

 

Updated: June 30, 2012

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)

public delegate void DataCacheBulkNotificationCallback(
	String^ cacheName,
	IEnumerable<DataCacheOperationDescriptor^>^ operations,
	DataCacheNotificationDescriptor^ nd
)

Parameters

cacheName
Type: System::String^

The name of the cache where the object is stored.

operations
Type: System.Collections.Generic::IEnumerable<DataCacheOperationDescriptor^>^

A list of DataCacheNotificationDescriptor cache operations.

nd
Type: Microsoft.ApplicationServer.Caching::DataCacheNotificationDescriptor^

The DataCacheNotificationDescriptor associated with the cache notification that invoked the delegate method.

Return to top
Show: