DistributedCacheExtensions.SetString Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
SetString(IDistributedCache, String, String) |
Define uma cadeia de caracteres no cache especificado com a chave especificada. |
SetString(IDistributedCache, String, String, DistributedCacheEntryOptions) |
Define uma cadeia de caracteres no cache especificado com a chave especificada. |
SetString(IDistributedCache, String, String)
Define uma cadeia de caracteres no cache especificado com a chave especificada.
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)
Parâmetros
- cache
- IDistributedCache
O cache no qual armazenar os dados.
- key
- String
A chave na qual armazenar os dados.
- value
- String
Os dados a serem armazenados no cache.
Exceções
Gerado quando key
ou value
é nulo.
Aplica-se a
SetString(IDistributedCache, String, String, DistributedCacheEntryOptions)
Define uma cadeia de caracteres no cache especificado com a chave especificada.
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)
Parâmetros
- cache
- IDistributedCache
O cache no qual armazenar os dados.
- key
- String
A chave na qual armazenar os dados.
- value
- String
Os dados a serem armazenados no cache.
- options
- DistributedCacheEntryOptions
As opções de cache para a entrada.
Exceções
Gerado quando key
ou value
é nulo.