Condividi tramite


IBufferDistributedCache.Set Metodo

Definizione

Imposta o sovrascrive un elemento della 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)

Parametri

key
String

Chiave della voce da creare.

value
ReadOnlySequence<Byte>

Valore per questa voce della cache.

options
DistributedCacheEntryOptions

Opzioni della cache per la voce.

Commenti

Questa operazione è funzionalmente simile a Set(String, Byte[], DistributedCacheEntryOptions), ma evita l'allocazione di matrici.

Si applica a