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
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:
[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
Returns
A builder instance that allows further configuration of the HybridCache system.
Applies to
AddHybridCache(IServiceCollection, Action<HybridCacheOptions>)
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
- setupAction
- Action<HybridCacheOptions>
Returns
A builder instance that allows further configuration of the HybridCache system.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.