Compartilhar via


HttpRuntimeSection.EnableKernelOutputCache Propriedade

Definição

Obtém ou define um valor que indica se o cache da saída está habilitado.

public:
 property bool EnableKernelOutputCache { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enableKernelOutputCache", DefaultValue=true)]
public bool EnableKernelOutputCache { get; set; }
[<System.Configuration.ConfigurationProperty("enableKernelOutputCache", DefaultValue=true)>]
member this.EnableKernelOutputCache : bool with get, set
Public Property EnableKernelOutputCache As Boolean

Valor da propriedade

true se o cache de saída estiver habilitado, caso contrário, false. O valor padrão é true.

Atributos

Exemplos

O exemplo a seguir mostra como usar a EnableKernelOutputCache propriedade .

// Get the current EnableKernelOutputCache property value.
Response.Write("EnableKernelOutputCache: " +
  configSection.EnableKernelOutputCache + "<br>");

// Set the EnableKernelOutputCache property to true.
configSection.EnableKernelOutputCache = true;
' Get the current EnableKernelOutputCache property value.
Response.Write("EnableKernelOutputCache: " & _
  configSection.EnableKernelOutputCache & "<br>")

' Set the EnableKernelOutputCache property to true.
configSection.EnableKernelOutputCache = True

Comentários

Para armazenar em cache uma resposta, os seguintes critérios precisam ser atendidos:

  • O cache deve ser explicitamente habilitado por uma diretiva de página ou pela API de cache.

  • O cache deve ter uma política de expiração para que o kernel saiba quando descartá-la.

  • O cache não pode ter cabeçalhos ou parâmetros variáveis.

  • A solicitação não deve exigir nenhuma autenticação.

Observação

Essa propriedade é relevante somente quando o IIS (Serviços de Informações da Internet) versão 6.0 ou posterior é instalado.

Aplica-se a

Confira também