Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ICacheKeyService.cs

namespace Nop.Core.Caching;

/// 
/// Cache key service interface
/// 
public partial interface ICacheKeyService
{
    /// 
    /// Create a copy of cache key and fills it by passed parameters
    /// 
    /// Initial cache key
    /// Parameters to create cache key
    /// Cache key
    CacheKey PrepareKey(CacheKey cacheKey, params object[] cacheKeyParameters);

    /// 
    /// Create a copy of cache key using the default cache time and fills it by passed parameters
    /// 
    /// Initial cache key
    /// Parameters to create cache key
    /// Cache key
    CacheKey PrepareKeyForDefaultCache(CacheKey cacheKey, params object[] cacheKeyParameters);
}