6 writes to BufferOutput
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (1)
872this.context.Response.BufferOutput = false;
System.Web (4)
Abstractions\HttpResponseWrapper.cs (1)
44_httpResponse.BufferOutput = value;
HttpResponse.cs (1)
3064set { this.BufferOutput = value;}
UI\Page.cs (1)
3811set { Response.BufferOutput = value; }
Util\AspCompat.cs (1)
786_context.Response.BufferOutput = (isBuffering != 0);
System.Web.Extensions (1)
HttpResponseInternalWrapper.cs (1)
79_httpResponse.BufferOutput = value;
6 references to BufferOutput
System.Web (5)
Abstractions\HttpResponseWrapper.cs (1)
41return _httpResponse.BufferOutput;
HttpResponse.cs (1)
3063get { return this.BufferOutput;}
HttpWriter.cs (1)
861_responseBufferingOn = _response.BufferOutput;
UI\Page.cs (1)
3812get { return Response.BufferOutput; }
Util\AspCompat.cs (1)
782return _context.Response.BufferOutput ? 1 : 0;
System.Web.Extensions (1)
HttpResponseInternalWrapper.cs (1)
76return _httpResponse.BufferOutput;