OutputCacheProviderAsync.GetAsync(String) Método
Definição
Retorna de maneira assíncrona uma referência para a entrada especificada no cache de saída.Asynchronously returns a reference to the specified entry in the output cache.
public:
abstract System::Threading::Tasks::Task<System::Object ^> ^ GetAsync(System::String ^ key);
public abstract System.Threading.Tasks.Task<object> GetAsync (string key);
abstract member GetAsync : string -> System.Threading.Tasks.Task<obj>
Public MustOverride Function GetAsync (key As String) As Task(Of Object)
Parâmetros
- key
- String
Um identificador exclusivo para uma entrada armazenada em cache no cache de saída.A unique identifier for a cached entry in the output cache.
Retornos
O valor key que identifica a entrada especificada no cache ou null, se a entrada especificada não estiver no cache.The key value that identifies the specified entry in the cache, or null if the specified entry is not in the cache.