Compartilhar via


IOutputCacheBufferStore Interface

Definição

Representa um repositório para respostas armazenadas em cache que usa um IBufferWriter<T> como destino.

public interface IOutputCacheBufferStore : Microsoft.AspNetCore.OutputCaching.IOutputCacheStore
type IOutputCacheBufferStore = interface
    interface IOutputCacheStore
Public Interface IOutputCacheBufferStore
Implements IOutputCacheStore
Implementações

Métodos

EvictByTagAsync(String, CancellationToken)

Remove respostas armazenadas em cache por marca.

(Herdado de IOutputCacheStore)
GetAsync(String, CancellationToken)

Obtém a resposta armazenada em cache para a chave fornecida, se ela existir. Se nenhuma resposta armazenada em cache existir para a chave fornecida, null será retornado.

(Herdado de IOutputCacheStore)
SetAsync(String, Byte[], String[], TimeSpan, CancellationToken)

Armazena a resposta fornecida no cache de resposta.

(Herdado de IOutputCacheStore)
SetAsync(String, ReadOnlySequence<Byte>, ReadOnlyMemory<String>, TimeSpan, CancellationToken)

Armazena a resposta fornecida no cache de resposta.

TryGetAsync(String, PipeWriter, CancellationToken)

Obtém a resposta armazenada em cache para a chave fornecida, se ela existir. Se nenhuma resposta armazenada em cache existir para a chave fornecida, null será retornado.

Aplica-se a