Partager via


OutputCacheServiceCollectionExtensions.AddOutputCache Méthode

Définition

Surcharges

AddOutputCache(IServiceCollection)

Ajoutez des services de mise en cache de sortie.

AddOutputCache(IServiceCollection, Action<OutputCacheOptions>)

Ajoutez des services de mise en cache de sortie et configurez les options associées.

AddOutputCache(IServiceCollection)

Source:
OutputCacheServiceCollectionExtensions.cs

Ajoutez des services de mise en cache de sortie.

public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddOutputCache (this Microsoft.Extensions.DependencyInjection.IServiceCollection services);
static member AddOutputCache : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddOutputCache (services As IServiceCollection) As IServiceCollection

Paramètres

services
IServiceCollection

La IServiceCollection pour l’ajout de services.

Retours

S’applique à

AddOutputCache(IServiceCollection, Action<OutputCacheOptions>)

Source:
OutputCacheServiceCollectionExtensions.cs

Ajoutez des services de mise en cache de sortie et configurez les options associées.

public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddOutputCache (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.AspNetCore.OutputCaching.OutputCacheOptions> configureOptions);
static member AddOutputCache : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.AspNetCore.OutputCaching.OutputCacheOptions> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddOutputCache (services As IServiceCollection, configureOptions As Action(Of OutputCacheOptions)) As IServiceCollection

Paramètres

services
IServiceCollection

La IServiceCollection pour l’ajout de services.

configureOptions
Action<OutputCacheOptions>

Délégué pour configurer le OutputCacheOptions.

Retours

S’applique à