MemoryCacheServiceCollectionExtensions.AddMemoryCache Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
AddMemoryCache(IServiceCollection) |
Aggiunge un'implementazione in memoria non distribuita di IMemoryCache a IServiceCollection. |
AddMemoryCache(IServiceCollection, Action<MemoryCacheOptions>) |
Aggiunge un'implementazione in memoria non distribuita di IMemoryCache a IServiceCollection. |
AddMemoryCache(IServiceCollection)
Aggiunge un'implementazione in memoria non distribuita di IMemoryCache a 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.
Restituisce
Oggetto IServiceCollection che consente il concatenamento di chiamate aggiuntive.
Si applica a
AddMemoryCache(IServiceCollection, Action<MemoryCacheOptions>)
Aggiunge un'implementazione in memoria non distribuita di IMemoryCache a 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.
- setupAction
- Action<MemoryCacheOptions>
Oggetto Action<T> per la configurazione dell'oggetto MemoryCacheOptions fornito.
Restituisce
Oggetto IServiceCollection che consente il concatenamento di chiamate aggiuntive.