Implemented interface member:
method
Set
Microsoft.Extensions.Caching.Distributed.IDistributedCache.Set(System.String, System.Byte[], Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)
3 references to Set
Microsoft.AspNetCore.Session.Tests (1)
SessionTests.cs (1)
1204public void Set(string key, byte[] value, DistributedCacheEntryOptions options) => _cache.Set(key, value, options);
Microsoft.Extensions.Caching.Hybrid.Tests (1)
BufferReleaseTests.cs (1)
82=> Set(key, value.ToArray(), options); // efficiency not important for this
Microsoft.Extensions.Caching.Memory (1)
MemoryDistributedCache.cs (1)
101Set(key, value, options);