次の方法で共有


IBufferDistributedCache.Set メソッド

定義

キャッシュ 項目を設定または上書きします。

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)

パラメーター

key
String

作成するエントリのキー。

value
ReadOnlySequence<Byte>

このキャッシュ エントリの値。

options
DistributedCacheEntryOptions

エントリのキャッシュ オプション。

注釈

これは機能的には Set(String, Byte[], DistributedCacheEntryOptions)に似ていますが、配列の割り当てを回避します。

適用対象