I'm beginning to port our .NET Framework class libraries to .NET Standard 2.0. Right away, I'm running into an issue with not finding an equivalent to:
private readonly System.Web.Caching.Cache _cache = HttpRuntime.Cache;
I understand that a .NET Standard project needs to support multiple platforms so might not be able to handle logic like this from System.Web anymore, but I need a way to access http caching within class libraries. I'm sure this is a very common request as developers port over their applications, any suggestions?
Note: I saw this link about System.Runtime.Caching, is that the new way to handle http caching?