Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Configuration;
using Nop.Core.Infrastructure;
namespace Nop.Core.Caching;
///
/// Represents key for caching objects
///
public partial class CacheKey
{
#region Ctor
///
/// Initialize a new instance with key and prefixes
///
/// Key
/// Prefixes for remove by prefix functionality
public CacheKey(string key, params string[] prefixes)
{
Key = key;
Prefixes.AddRange(prefixes.Where(prefix => !string.IsNullOrEmpty(prefix)));
}
#endregion
#region Methods
///
/// Create a new instance from the current one and fill it with passed parameters
///
/// Function to create parameters
/// Objects to create parameters
/// Cache key
public virtual CacheKey Create(Func