Table of Contents

Class OfflineFileCacheOptions

Namespace
Microsoft.Extensions.Configuration.AzureAppConfiguration
Assembly
Microsoft.Extensions.Configuration.AzureAppConfiguration.dll

Options for controlling the behavior of an OfflineFileCache.

public class OfflineFileCacheOptions
Inheritance
OfflineFileCacheOptions
Inherited Members

Constructors

OfflineFileCacheOptions()

public OfflineFileCacheOptions()

Properties

IV

Initilization vector used for encryption within the offline file cache.

public byte[] IV { get; set; }

Property Value

byte[]

Key

Key used for encrypting data stored in the offline file cache.

public byte[] Key { get; set; }

Property Value

byte[]

Path

The file path to use for persisting cached data.

public string Path { get; set; }

Property Value

string

SignKey

Key used for signing data stored in the offline file cache.

public byte[] SignKey { get; set; }

Property Value

byte[]