Defines a callback method for notifying application when data source is cleared.

Namespace: Alachisoft.NCache.Web.Caching
Assembly: Alachisoft.NCache.Web (in Alachisoft.NCache.Web.dll) Version: 4.1.0.0 (4.1.0.0)

Syntax

C#
public delegate void DataSourceClearedCallback(
	Object result
)
Visual Basic
Public Delegate Sub DataSourceClearedCallback ( _
	result As Object _
)
Visual C++
public delegate void DataSourceClearedCallback(
	Object^ result
)

Parameters

result
Type: System..::..Object
A Success or in case of failuer, an exception that is thrown during operation

Remarks

When doing a write behind clear operation on data source, this callback can be used to determine the result of the operation.

See Also