DistributedCacheExtensions.SetString Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Overload
SetString(IDistributedCache, String, String) |
Mengatur string dalam cache yang ditentukan dengan kunci yang ditentukan. |
SetString(IDistributedCache, String, String, DistributedCacheEntryOptions) |
Mengatur string dalam cache yang ditentukan dengan kunci yang ditentukan. |
SetString(IDistributedCache, String, String)
Mengatur string dalam cache yang ditentukan dengan kunci yang ditentukan.
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)
Parameter
- cache
- IDistributedCache
Cache tempat menyimpan data.
- key
- String
Kunci untuk menyimpan data.
- value
- String
Data yang akan disimpan di cache.
Pengecualian
Dilemparkan ketika key
atau value
null.
Berlaku untuk
SetString(IDistributedCache, String, String, DistributedCacheEntryOptions)
Mengatur string dalam cache yang ditentukan dengan kunci yang ditentukan.
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)
Parameter
- cache
- IDistributedCache
Cache tempat menyimpan data.
- key
- String
Kunci untuk menyimpan data.
- value
- String
Data yang akan disimpan di cache.
- options
- DistributedCacheEntryOptions
Opsi cache untuk entri.
Pengecualian
Dilemparkan ketika key
atau value
null.