60 lines
2.3 KiB
C#
60 lines
2.3 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using Microsoft.AspNetCore.ResponseCaching;
|
|
using Microsoft.AspNetCore.ResponseCaching.Internal;
|
|
using Microsoft.Extensions.DependencyInjection.Extensions;
|
|
|
|
namespace Microsoft.Extensions.DependencyInjection
|
|
{
|
|
/// <summary>
|
|
/// Extension methods for the ResponseCaching middleware.
|
|
/// </summary>
|
|
public static class ResponseCachingServicesExtensions
|
|
{
|
|
/// <summary>
|
|
/// Add response caching services.
|
|
/// </summary>
|
|
/// <param name="services">The <see cref="IServiceCollection"/> for adding services.</param>
|
|
/// <returns></returns>
|
|
public static IServiceCollection AddResponseCaching(this IServiceCollection services)
|
|
{
|
|
if (services == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(services));
|
|
}
|
|
|
|
services.AddMemoryCache();
|
|
services.TryAdd(ServiceDescriptor.Singleton<IResponseCachingPolicyProvider, ResponseCachingPolicyProvider>());
|
|
services.TryAdd(ServiceDescriptor.Singleton<IResponseCachingKeyProvider, ResponseCachingKeyProvider>());
|
|
services.TryAdd(ServiceDescriptor.Singleton<IResponseCache, MemoryResponseCache>());
|
|
|
|
return services;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Add response caching services and configure the related options.
|
|
/// </summary>
|
|
/// <param name="services">The <see cref="IServiceCollection"/> for adding services.</param>
|
|
/// <param name="configureOptions">A delegate to configure the <see cref="ResponseCachingOptions"/>.</param>
|
|
/// <returns></returns>
|
|
public static IServiceCollection AddResponseCaching(this IServiceCollection services, Action<ResponseCachingOptions> configureOptions)
|
|
{
|
|
if (services == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(services));
|
|
}
|
|
if (configureOptions == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(configureOptions));
|
|
}
|
|
|
|
services.Configure(configureOptions);
|
|
services.AddResponseCaching();
|
|
|
|
return services;
|
|
}
|
|
}
|
|
}
|