Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
MemoryCacheServiceCollectionExtensions.AddMemoryCache Method
Definition
- Namespace:
- Microsoft.Extensions.DependencyInjection
- Assembly:
- Microsoft.Extensions.Caching.Memory.dll
- Package:
- Microsoft.Extensions.Caching.Memory v11.0.0-preview.5.26302.115
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 |
|---|---|
| AddMemoryCache(IServiceCollection) |
Adds a non distributed in-memory implementation of IMemoryCache to the IServiceCollection. |
| AddMemoryCache(IServiceCollection, Action<MemoryCacheOptions>) |
Adds a non distributed in-memory implementation of IMemoryCache to the IServiceCollection. |
AddMemoryCache(IServiceCollection)
Adds a non distributed in-memory implementation of IMemoryCache to the IServiceCollection.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddMemoryCache(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddMemoryCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection services);
static member AddMemoryCache : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddMemoryCache (services As IServiceCollection) As IServiceCollection
Parameters
- services
- IServiceCollection
The IServiceCollection to add services to.
Returns
The IServiceCollection so that additional calls can be chained.
Applies to
AddMemoryCache(IServiceCollection, Action<MemoryCacheOptions>)
Adds a non distributed in-memory implementation of IMemoryCache to the IServiceCollection.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddMemoryCache(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Action<Microsoft::Extensions::Caching::Memory::MemoryCacheOptions ^> ^ setupAction);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddMemoryCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.Extensions.Caching.Memory.MemoryCacheOptions> setupAction);
static member AddMemoryCache : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.Extensions.Caching.Memory.MemoryCacheOptions> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddMemoryCache (services As IServiceCollection, setupAction As Action(Of MemoryCacheOptions)) As IServiceCollection
Parameters
- services
- IServiceCollection
The IServiceCollection to add services to.
- setupAction
- Action<MemoryCacheOptions>
The Action<T> to configure the provided MemoryCacheOptions.
Returns
The IServiceCollection so that additional calls can be chained.
Applies to
Feedback
Was this page helpful?
