Page.Buffer Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets a value indicating whether the page output is buffered.
protected:
property bool Buffer { void set(bool value); };
public:
property bool Buffer { bool get(); void set(bool value); };
protected bool Buffer { set; }
[System.ComponentModel.Browsable(false)]
public bool Buffer { get; set; }
member this.Buffer : bool
[<System.ComponentModel.Browsable(false)>]
member this.Buffer : bool with get, set
Protected Property Buffer As Boolean
Public Property Buffer As Boolean
Property Value
true
if page output is buffered; otherwise, false
. The default is true
.
- Attributes
Remarks
In most circumstances, do not set this property in code. Set the Buffer attribute to true
using the @ Page directive in the .aspx file. When the page is requested, the dynamically generated class sets the property.
Note
The Buffer property sets and gets the BufferOutput property.