Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Caching;
using Nop.Core.Domain.Shipping;
namespace Nop.Services.Shipping;
///
/// Represents default values related to shipping services
///
public static partial class NopShippingDefaults
{
#region Caching defaults
///
/// Gets a key for caching
///
///
/// {0} : country identifier
///
public static CacheKey ShippingMethodsAllCacheKey => new("Nop.shippingmethod.all.{0}", NopEntityCacheDefaults.AllPrefix);
#endregion
}