Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Media;
using Nop.Services.Caching;
namespace Nop.Plugin.Misc.AzureBlob.Services.Caching;
///
/// Represents a picture cache event consumer
///
public class PictureCacheEventConsumer : CacheEventConsumer
{
///
/// Clear cache data
///
/// Entity
/// A task that represents the asynchronous operation
protected override async Task ClearCacheAsync(Picture entity)
{
await RemoveByPrefixAsync(AzureBlobDefaults.ThumbsExistsPrefix);
}
}