Ejemplo n.º 1
0
 public MemoryCacheOIDCPipelineStore(
     IOptions <MemoryCacheOIDCPipelineStoreOptions> options,
     IMemoryCache memoryCache)
 {
     _memoryCache = memoryCache;
     _options     = options.Value;
 }
 public DistributedCacheOIDCPipelineStore(
     IOptions <MemoryCacheOIDCPipelineStoreOptions> options,
     IBinarySerializer binarySerializer,
     IDistributedCache cache)
 {
     _binarySerializer = binarySerializer;
     _cache            = cache;
     _options          = options.Value;
 }