DistributedCacheExtensions.SetString メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
SetString(IDistributedCache, String, String) |
指定したキーを使用して、指定したキャッシュに文字列を設定します。 |
SetString(IDistributedCache, String, String, DistributedCacheEntryOptions) |
指定したキーを使用して、指定したキャッシュに文字列を設定します。 |
SetString(IDistributedCache, String, String)
指定したキーを使用して、指定したキャッシュに文字列を設定します。
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)
指定したキーを使用して、指定したキャッシュに文字列を設定します。
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 です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET