DistributedCacheExtensions.SetString Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
SetString(IDistributedCache, String, String) |
Imposta una stringa nella cache specificata con la chiave specificata. |
SetString(IDistributedCache, String, String, DistributedCacheEntryOptions) |
Imposta una stringa nella cache specificata con la chiave specificata. |
SetString(IDistributedCache, String, String)
- Origine:
- DistributedCacheExtensions.cs
- Origine:
- DistributedCacheExtensions.cs
- Origine:
- DistributedCacheExtensions.cs
- Origine:
- DistributedCacheExtensions.cs
Imposta una stringa nella cache specificata con la chiave specificata.
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)
Parametri
- cache
- IDistributedCache
Cache in cui archiviare i dati.
- key
- String
Chiave in cui archiviare i dati.
- value
- String
Dati da archiviare nella cache.
Eccezioni
key
o value
è null.
Si applica a
SetString(IDistributedCache, String, String, DistributedCacheEntryOptions)
- Origine:
- DistributedCacheExtensions.cs
- Origine:
- DistributedCacheExtensions.cs
- Origine:
- DistributedCacheExtensions.cs
- Origine:
- DistributedCacheExtensions.cs
Imposta una stringa nella cache specificata con la chiave specificata.
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)
Parametri
- cache
- IDistributedCache
Cache in cui archiviare i dati.
- key
- String
Chiave in cui archiviare i dati.
- value
- String
Dati da archiviare nella cache.
- options
- DistributedCacheEntryOptions
Opzioni della cache per la voce.
Eccezioni
key
o value
è null.