Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

HybridCacheServiceExtensions.AddHybridCache Method

Definition

Namespace:
Microsoft.Extensions.DependencyInjection
Assembly:
Microsoft.Extensions.Caching.Hybrid.dll
Package:
Microsoft.Extensions.Caching.Hybrid v10.7.0

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)

Source:
HybridCacheServiceExtensions.cs
Source:
HybridCacheServiceExtensions.cs

Adds support for multi-tier caching services.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::Caching::Hybrid::IHybridCacheBuilder ^ AddHybridCache(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ 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>)

Source:
HybridCacheServiceExtensions.cs
Source:
HybridCacheServiceExtensions.cs

Adds support for multi-tier caching services.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::Caching::Hybrid::IHybridCacheBuilder ^ AddHybridCache(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Action<Microsoft::Extensions::Caching::Hybrid::HybridCacheOptions ^> ^ setupAction);
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.

Applies to


Feedback

Was this page helpful?