Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created August 29, 2019 22:03
Show Gist options
  • Save ntakouris/9bcd454e581831fcb820c76f7b09fbd5 to your computer and use it in GitHub Desktop.
Save ntakouris/9bcd454e581831fcb820c76f7b09fbd5 to your computer and use it in GitHub Desktop.
var cacheSettings = context.HttpContext.RequestServices.GetRequiredService<RedisCacheSettings>();
if (!cacheSettings.Enabled)
{
await next();
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment