IOutputCacheStore.GetAsync(String, CancellationToken) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la réponse mise en cache pour la clé donnée, le cas échéant.
Si aucune réponse mise en cache n’existe pour la clé donnée, null
est retournée.
public System.Threading.Tasks.ValueTask<byte[]?> GetAsync (string key, System.Threading.CancellationToken cancellationToken);
abstract member GetAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<byte[]>
Public Function GetAsync (key As String, cancellationToken As CancellationToken) As ValueTask(Of Byte())
Paramètres
- key
- String
Clé de cache à rechercher.
- cancellationToken
- CancellationToken
Indique que l’opération doit être annulée.
Retours
Entrée du cache de réponse s’il existe ; sinon, null
.