MemoryDistributedCache Constructors

Definition

Overloads

MemoryDistributedCache(IMemoryCache)
MemoryDistributedCache(IOptions<MemoryDistributedCacheOptions>)

Creates a new MemoryDistributedCache instance.

MemoryDistributedCache(IOptions<MemoryDistributedCacheOptions>, ILoggerFactory)

Creates a new MemoryDistributedCache instance.

MemoryDistributedCache(IMemoryCache)

public:
 MemoryDistributedCache(Microsoft::Extensions::Caching::Memory::IMemoryCache ^ memoryCache);
public MemoryDistributedCache (Microsoft.Extensions.Caching.Memory.IMemoryCache memoryCache);
new Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache : Microsoft.Extensions.Caching.Memory.IMemoryCache -> Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache
Public Sub New (memoryCache As IMemoryCache)

Parameters

memoryCache
IMemoryCache

Applies to

MemoryDistributedCache(IOptions<MemoryDistributedCacheOptions>)

Source:
MemoryDistributedCache.cs
Source:
MemoryDistributedCache.cs
Source:
MemoryDistributedCache.cs
Source:
MemoryDistributedCache.cs

Creates a new MemoryDistributedCache instance.

public:
 MemoryDistributedCache(Microsoft::Extensions::Options::IOptions<Microsoft::Extensions::Caching::Memory::MemoryDistributedCacheOptions ^> ^ optionsAccessor);
public MemoryDistributedCache (Microsoft.Extensions.Options.IOptions<Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions> optionsAccessor);
new Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache : Microsoft.Extensions.Options.IOptions<Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions> -> Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache
Public Sub New (optionsAccessor As IOptions(Of MemoryDistributedCacheOptions))

Parameters

optionsAccessor
IOptions<MemoryDistributedCacheOptions>

The options of the cache.

Applies to

MemoryDistributedCache(IOptions<MemoryDistributedCacheOptions>, ILoggerFactory)

Source:
MemoryDistributedCache.cs
Source:
MemoryDistributedCache.cs
Source:
MemoryDistributedCache.cs
Source:
MemoryDistributedCache.cs

Creates a new MemoryDistributedCache instance.

public:
 MemoryDistributedCache(Microsoft::Extensions::Options::IOptions<Microsoft::Extensions::Caching::Memory::MemoryDistributedCacheOptions ^> ^ optionsAccessor, Microsoft::Extensions::Logging::ILoggerFactory ^ loggerFactory);
public MemoryDistributedCache (Microsoft.Extensions.Options.IOptions<Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions> optionsAccessor, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory);
new Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache : Microsoft.Extensions.Options.IOptions<Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions> * Microsoft.Extensions.Logging.ILoggerFactory -> Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache
Public Sub New (optionsAccessor As IOptions(Of MemoryDistributedCacheOptions), loggerFactory As ILoggerFactory)

Parameters

optionsAccessor
IOptions<MemoryDistributedCacheOptions>

The options of the cache.

loggerFactory
ILoggerFactory

The logger factory to create ILogger used to log messages.

Applies to