AspNetCore.Docs/aspnet/whitepapers/aspnet4/overview/samples/sample4.cs

7 lines
223 B
C#

public override string GetOutputCacheProviderName(HttpContext context)
{
if (context.Request.Path.EndsWith("Advanced.aspx"))
return "DiskCache";
else
return base.GetOutputCacheProviderName(context);
}