RedisDataProtectionBuilderExtensions.PersistKeysToRedis Metodo

Definizione

Overload

PersistKeysToRedis(IDataProtectionBuilder, IConnectionMultiplexer)

Configura il sistema di protezione dei dati per rendere persistenti le chiavi alla chiave predefinita ('DataProtection-Keys') nel database Redis

PersistKeysToRedis(IDataProtectionBuilder, IConnectionMultiplexer, RedisKey)

Configura il sistema di protezione dei dati per rendere persistenti le chiavi alla chiave specificata nel database Redis

PersistKeysToRedis(IDataProtectionBuilder, Func<IDatabase>, RedisKey)

Configura il sistema di protezione dei dati per rendere persistenti le chiavi per la chiave specificata nel database Redis

PersistKeysToRedis(IDataProtectionBuilder, IConnectionMultiplexer)

Origine:
RedisDataProtectionBuilderExtensions.cs

Configura il sistema di protezione dei dati per rendere persistenti le chiavi alla chiave predefinita ('DataProtection-Keys') nel database Redis

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::DataProtection::IDataProtectionBuilder ^ PersistKeysToRedis(Microsoft::AspNetCore::DataProtection::IDataProtectionBuilder ^ builder, StackExchange::Redis::IConnectionMultiplexer ^ connectionMultiplexer);
public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder PersistKeysToRedis (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, StackExchange.Redis.IConnectionMultiplexer connectionMultiplexer);
static member PersistKeysToRedis : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * StackExchange.Redis.IConnectionMultiplexer -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function PersistKeysToRedis (builder As IDataProtectionBuilder, connectionMultiplexer As IConnectionMultiplexer) As IDataProtectionBuilder

Parametri

builder
IDataProtectionBuilder

Istanza del generatore da modificare.

connectionMultiplexer
StackExchange.Redis.IConnectionMultiplexer

Oggetto per l'accesso StackExchange.Redis.IConnectionMultiplexer al database.

Restituisce

Riferimento all'oggetto dopo il completamento dell'operazione IDataProtectionBuilder .

Si applica a

PersistKeysToRedis(IDataProtectionBuilder, IConnectionMultiplexer, RedisKey)

Origine:
RedisDataProtectionBuilderExtensions.cs

Configura il sistema di protezione dei dati per rendere persistenti le chiavi alla chiave specificata nel database Redis

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::DataProtection::IDataProtectionBuilder ^ PersistKeysToRedis(Microsoft::AspNetCore::DataProtection::IDataProtectionBuilder ^ builder, StackExchange::Redis::IConnectionMultiplexer ^ connectionMultiplexer, StackExchange::Redis::RedisKey key);
public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder PersistKeysToRedis (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, StackExchange.Redis.IConnectionMultiplexer connectionMultiplexer, StackExchange.Redis.RedisKey key);
static member PersistKeysToRedis : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * StackExchange.Redis.IConnectionMultiplexer * StackExchange.Redis.RedisKey -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function PersistKeysToRedis (builder As IDataProtectionBuilder, connectionMultiplexer As IConnectionMultiplexer, key As RedisKey) As IDataProtectionBuilder

Parametri

builder
IDataProtectionBuilder

Istanza del generatore da modificare.

connectionMultiplexer
StackExchange.Redis.IConnectionMultiplexer

Oggetto per l'accesso StackExchange.Redis.IConnectionMultiplexer al database.

key
StackExchange.Redis.RedisKey

Oggetto utilizzato per archiviare l'elenco StackExchange.Redis.RedisKey delle chiavi.

Restituisce

Riferimento all'oggetto dopo il completamento dell'operazione IDataProtectionBuilder .

Si applica a

PersistKeysToRedis(IDataProtectionBuilder, Func<IDatabase>, RedisKey)

Origine:
RedisDataProtectionBuilderExtensions.cs

Configura il sistema di protezione dei dati per rendere persistenti le chiavi per la chiave specificata nel database Redis

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::DataProtection::IDataProtectionBuilder ^ PersistKeysToRedis(Microsoft::AspNetCore::DataProtection::IDataProtectionBuilder ^ builder, Func<StackExchange::Redis::IDatabase ^> ^ databaseFactory, StackExchange::Redis::RedisKey key);
public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder PersistKeysToRedis (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, Func<StackExchange.Redis.IDatabase> databaseFactory, StackExchange.Redis.RedisKey key);
static member PersistKeysToRedis : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * Func<StackExchange.Redis.IDatabase> * StackExchange.Redis.RedisKey -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function PersistKeysToRedis (builder As IDataProtectionBuilder, databaseFactory As Func(Of IDatabase), key As RedisKey) As IDataProtectionBuilder

Parametri

builder
IDataProtectionBuilder

Istanza del generatore da modificare.

databaseFactory
Func<StackExchange.Redis.IDatabase>

Delegato usato per creare StackExchange.Redis.IDatabase istanze.

key
StackExchange.Redis.RedisKey

Oggetto utilizzato per archiviare l'elenco StackExchange.Redis.RedisKey delle chiavi.

Restituisce

Riferimento all'oggetto dopo il completamento dell'operazione IDataProtectionBuilder .

Si applica a