Partager via


IBufferDistributedCache.Set Méthode

Définition

Définit ou remplace un élément de cache.

public:
 void Set(System::String ^ key, System::Buffers::ReadOnlySequence<System::Byte> value, Microsoft::Extensions::Caching::Distributed::DistributedCacheEntryOptions ^ options);
public void Set (string key, System.Buffers.ReadOnlySequence<byte> value, Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions options);
abstract member Set : string * System.Buffers.ReadOnlySequence<byte> * Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions -> unit
Public Sub Set (key As String, value As ReadOnlySequence(Of Byte), options As DistributedCacheEntryOptions)

Paramètres

key
String

Clé de l’entrée à créer.

value
ReadOnlySequence<Byte>

Valeur de cette entrée de cache.

options
DistributedCacheEntryOptions

Options de cache pour l’entrée.

Remarques

Ceci est fonctionnellement similaire à Set(String, Byte[], DistributedCacheEntryOptions), mais évite l’allocation de tableau.

S’applique à