다음을 통해 공유


PagesSection.Buffer 속성

정의

.aspx 페이지 및 .ascx 컨트롤에서 응답 버퍼링을 사용하는지 여부를 지정하는 값을 가져오거나 설정합니다.

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

속성 값

Boolean

.aspx 페이지 및 .ascx 컨트롤에서 응답 버퍼링을 사용하면 true이고, 그렇지 않으면 false입니다. 기본값은 true입니다.

특성

예제

다음 코드 예제에서는 Buffer 속성을 사용하는 방법을 보여 줍니다.

// 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

설명

응답 버퍼링 켜져 전체 페이지 까지는 페이지 또는 컨트롤 출력이 버퍼링 되 때나 제어 처리 됩니다. 설정 하지 마세요 Buffertrue 성능이 주요 고려 사항인 경우.

적용 대상