File: IHybridCacheBuilder.cs | Web Access |
Project: src\src\Libraries\Microsoft.Extensions.Caching.Hybrid\Microsoft.Extensions.Caching.Hybrid.csproj (Microsoft.Extensions.Caching.Hybrid) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Extensions.DependencyInjection; namespace Microsoft.Extensions.Caching.Hybrid; /// <summary> /// Helper API for configuring <see cref="HybridCache"/>. /// </summary> public interface IHybridCacheBuilder { /// <summary> /// Gets the services collection associated with this instance. /// </summary> IServiceCollection Services { get; } } |