Compartilhar via


OutputCacheProfile.Location Propriedade

Definição

Obtém ou define o local do cache de saída.

public:
 property System::Web::UI::OutputCacheLocation Location { System::Web::UI::OutputCacheLocation get(); void set(System::Web::UI::OutputCacheLocation value); };
[System.Configuration.ConfigurationProperty("location")]
public System.Web.UI.OutputCacheLocation Location { get; set; }
[<System.Configuration.ConfigurationProperty("location")>]
member this.Location : System.Web.UI.OutputCacheLocation with get, set
Public Property Location As OutputCacheLocation

Valor da propriedade

Um dos valores de enumeração OutputCacheLocation. O padrão é Any.

Atributos

Exemplos

O exemplo de código a seguir mostra como usar a Location propriedade .


// Get the current Location.
System.Web.UI.OutputCacheLocation locationValue = 
    outputCacheProfile.Location;

// Set the Location property to null.
outputCacheProfile.Location = 
    System.Web.UI.OutputCacheLocation.Server;
  ' Get the current Location.
  Dim locationValue _
  As System.Web.UI.OutputCacheLocation = _
  outputCacheProfile.Location

' Set the Location property to null.
  outputCacheProfile.Location = _
  System.Web.UI.OutputCacheLocation.Server

Comentários

Se Location estiver definido como Any, o cache de saída poderá ser localizado no cliente do navegador, onde a solicitação se originou; em um servidor proxy ou em qualquer outro servidor, participando da solicitação; ou no servidor em que a solicitação foi processada.

Aplica-se a

Confira também