Deleting a Collection from Cache
The following is a code example for the DeleteBulk operation. You can use this method to delete multiple items from cache in a single call.
string[] keys = { "Product:1001", "Product:1002" };
try{
cache.DeleteBulk(keys);
}
catch (OperationFailedException ex){
// handle exception
}