Compartilhar via


PagesSection.Buffer Propriedade

Definição

Obtém ou define um valor que especifica se as páginas .aspx e os controles .ascx usam buffer de resposta.

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

Valor da propriedade

Boolean

true se páginas .aspx e controles .ascx usarem buffer de resposta; caso contrário, false. O padrão é true.

Atributos

Exemplos

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

// Get the current Buffer property value.
Console.WriteLine(
    "Current Buffer value: '{0}'", pagesSection.Buffer);

// Set the Buffer property to true.
pagesSection.Buffer = true;
' Get the current Buffer property value.
Console.WriteLine( _
    "Current Buffer value: '{0}'", pagesSection.Buffer)

' Set the Buffer property to true.
pagesSection.Buffer = True

Comentários

Quando o buffer de resposta é ativado, a saída da página ou do controle é armazenada em buffer até que toda a página ou controle seja processado. Não definido Buffer como true se o desempenho for uma consideração fundamental.

Aplica-se a