DistributedCacheExtensions.SetString Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
SetString(IDistributedCache, String, String) |
Nastaví řetězec v zadané mezipaměti se zadaným klíčem. |
SetString(IDistributedCache, String, String, DistributedCacheEntryOptions) |
Nastaví řetězec v zadané mezipaměti se zadaným klíčem. |
SetString(IDistributedCache, String, String)
Nastaví řetězec v zadané mezipaměti se zadaným klíčem.
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)
Parametry
- cache
- IDistributedCache
Mezipaměť, do které se mají data ukládat.
- key
- String
Klíč pro uložení dat.
- value
- String
Data, která se mají uložit do mezipaměti.
Výjimky
key
nebo value
má hodnotu null.
Platí pro
SetString(IDistributedCache, String, String, DistributedCacheEntryOptions)
Nastaví řetězec v zadané mezipaměti se zadaným klíčem.
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)
Parametry
- cache
- IDistributedCache
Mezipaměť, do které se mají data ukládat.
- key
- String
Klíč pro uložení dat.
- value
- String
Data, která se mají uložit do mezipaměti.
- options
- DistributedCacheEntryOptions
Možnosti mezipaměti pro položku.
Výjimky
key
nebo value
má hodnotu null.