IOutputCacheBufferStore.TryGetAsync 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<bool> TryGetAsync (string key, System.IO.Pipelines.PipeWriter destination, System.Threading.CancellationToken cancellationToken);
abstract member TryGetAsync : string * System.IO.Pipelines.PipeWriter * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<bool>
Public Function TryGetAsync (key As String, destination As PipeWriter, cancellationToken As CancellationToken) As ValueTask(Of Boolean)
Paramètres
- key
- String
Clé de cache à rechercher.
- destination
- PipeWriter
Emplacement dans lequel la valeur doit être écrite.
- cancellationToken
- CancellationToken
Indique que l’opération doit être annulée.
Retours
True
si l’entrée du cache de réponse existe ; sinon, False
.