HybridCacheServiceExtensions.AddHybridCache Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| AddHybridCache(IServiceCollection) |
Adds support for multi-tier caching services. |
| AddHybridCache(IServiceCollection, Action<HybridCacheOptions>) |
Adds support for multi-tier caching services. |
AddHybridCache(IServiceCollection)
Adds support for multi-tier caching services.
public static Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder AddHybridCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection services);
static member AddHybridCache : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder
<Extension()>
Public Function AddHybridCache (services As IServiceCollection) As IHybridCacheBuilder
Parameters
- services
- IServiceCollection
The IServiceCollection to add the service to.
Returns
A builder instance that allows further configuration of the HybridCache service.
Applies to
AddHybridCache(IServiceCollection, Action<HybridCacheOptions>)
Adds support for multi-tier caching services.
public static Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder AddHybridCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.Extensions.Caching.Hybrid.HybridCacheOptions> setupAction);
static member AddHybridCache : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.Extensions.Caching.Hybrid.HybridCacheOptions> -> Microsoft.Extensions.Caching.Hybrid.IHybridCacheBuilder
<Extension()>
Public Function AddHybridCache (services As IServiceCollection, setupAction As Action(Of HybridCacheOptions)) As IHybridCacheBuilder
Parameters
- services
- IServiceCollection
The IServiceCollection to add the service to.
- setupAction
- Action<HybridCacheOptions>
A delegate to run to configure the HybridCacheOptions instance.
Returns
A builder instance that allows further configuration of the HybridCache service.