PagesSection.Buffer 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
.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
속성 값
.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
설명
응답 버퍼링 켜져 전체 페이지 까지는 페이지 또는 컨트롤 출력이 버퍼링 되 때나 제어 처리 됩니다. 설정 하지 마세요 Buffer 에 true
성능이 주요 고려 사항인 경우.