MemoryCacheServiceCollectionExtensions.AddMemoryCache Metodo
Definizione
Overload
AddMemoryCache(IServiceCollection) |
Aggiunge un'implementazione in memoria non distribuita di IMemoryCache a IServiceCollection.Adds a non distributed in memory implementation of IMemoryCache to the IServiceCollection. |
AddMemoryCache(IServiceCollection, Action<MemoryCacheOptions>) |
Aggiunge un'implementazione in memoria non distribuita di IMemoryCache a IServiceCollection.Adds a non distributed in memory implementation of IMemoryCache to the IServiceCollection. |
AddMemoryCache(IServiceCollection)
Aggiunge un'implementazione in memoria non distribuita di IMemoryCache a 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
Parametri
- services
- IServiceCollection
Oggetto IServiceCollection in cui aggiungere i servizi.The IServiceCollection to add services to.
Restituisce
Oggetto IServiceCollection che consente il concatenamento di chiamate aggiuntive.The IServiceCollection so that additional calls can be chained.
AddMemoryCache(IServiceCollection, Action<MemoryCacheOptions>)
Aggiunge un'implementazione in memoria non distribuita di IMemoryCache a 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, 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
Parametri
- services
- IServiceCollection
Oggetto IServiceCollection in cui aggiungere i servizi.The IServiceCollection to add services to.
- setupAction
- Action<MemoryCacheOptions>
Oggetto Action<T> per la configurazione dell'oggetto MemoryCacheOptions fornito.The Action<T> to configure the provided MemoryCacheOptions.
Restituisce
Oggetto IServiceCollection che consente il concatenamento di chiamate aggiuntive.The IServiceCollection so that additional calls can be chained.