Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions
Extension methods for setting up memory cache related services in an IServiceCollection.
namespace Microsoft.Extensions.DependencyInjection
{
public static class MemoryCacheServiceCollectionExtensions
{
public static IServiceCollection AddMemoryCache(this IServiceCollection services);
public static IServiceCollection AddMemoryCache(this IServiceCollection services, Action<MemoryCacheOptions> setupAction);
public static IServiceCollection AddDistributedMemoryCache(this IServiceCollection services);
public static IServiceCollection AddDistributedMemoryCache(this IServiceCollection services, Action<MemoryDistributedCacheOptions> setupAction);
}
}