DistributedCacheExtensions.SetString メソッド

定義

オーバーロード

SetString(IDistributedCache, String, String)

指定したキーを使用して、指定したキャッシュに文字列を設定します。

SetString(IDistributedCache, String, String, DistributedCacheEntryOptions)

指定したキーを使用して、指定したキャッシュに文字列を設定します。

SetString(IDistributedCache, String, String)

ソース:
DistributedCacheExtensions.cs
ソース:
DistributedCacheExtensions.cs
ソース:
DistributedCacheExtensions.cs
ソース:
DistributedCacheExtensions.cs

指定したキーを使用して、指定したキャッシュに文字列を設定します。

public:
[System::Runtime::CompilerServices::Extension]
 static void SetString(Microsoft::Extensions::Caching::Distributed::IDistributedCache ^ cache, System::String ^ key, System::String ^ value);
public static void SetString (this Microsoft.Extensions.Caching.Distributed.IDistributedCache cache, string key, string value);
static member SetString : Microsoft.Extensions.Caching.Distributed.IDistributedCache * string * string -> unit
<Extension()>
Public Sub SetString (cache As IDistributedCache, key As String, value As String)

パラメーター

cache
IDistributedCache

データを格納するキャッシュ。

key
String

データを格納するキー。

value
String

キャッシュ内に格納するデータ。

例外

key または value が null です。

適用対象

SetString(IDistributedCache, String, String, DistributedCacheEntryOptions)

ソース:
DistributedCacheExtensions.cs
ソース:
DistributedCacheExtensions.cs
ソース:
DistributedCacheExtensions.cs
ソース:
DistributedCacheExtensions.cs

指定したキーを使用して、指定したキャッシュに文字列を設定します。

public:
[System::Runtime::CompilerServices::Extension]
 static void SetString(Microsoft::Extensions::Caching::Distributed::IDistributedCache ^ cache, System::String ^ key, System::String ^ value, Microsoft::Extensions::Caching::Distributed::DistributedCacheEntryOptions ^ options);
public static void SetString (this Microsoft.Extensions.Caching.Distributed.IDistributedCache cache, string key, string value, Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions options);
static member SetString : Microsoft.Extensions.Caching.Distributed.IDistributedCache * string * string * Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions -> unit
<Extension()>
Public Sub SetString (cache As IDistributedCache, key As String, value As String, options As DistributedCacheEntryOptions)

パラメーター

cache
IDistributedCache

データを格納するキャッシュ。

key
String

データを格納するキー。

value
String

キャッシュ内に格納するデータ。

options
DistributedCacheEntryOptions

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

例外

key または value が null です。

適用対象