IBufferDistributedCache.Set Method

Definition

Sets or overwrites a cache item.

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)

Parameters

key
String

The key of the entry to create.

value
ReadOnlySequence<Byte>

The value for this cache entry.

options
DistributedCacheEntryOptions

The cache options for the entry.

Remarks

This is functionally similar to Set(String, Byte[], DistributedCacheEntryOptions), but avoids the array allocation.

Applies to