This documentation is archived and is not being maintained.
HttpResponseBase Properties
Visual Studio 2010
The HttpResponseBase type exposes the following members.
| Name | Description | |
|---|---|---|
|
Buffer | When overridden in a derived class, gets or sets a value that indicates whether to buffer output and send it after the complete response has finished processing. |
|
BufferOutput | When overridden in a derived class, gets or sets a value that indicates whether to buffer output and send it after the complete page has finished processing. |
|
Cache | When overridden in a derived class, gets the caching policy (such as expiration time, privacy settings, and vary clauses) of the current Web page. |
|
CacheControl | When overridden in a derived class, gets or sets the Cache-Control HTTP header that matches one of the HttpCacheability enumeration values. |
|
Charset | When overridden in a derived class, gets or sets the HTTP character set of the current response. |
|
ContentEncoding | When overridden in a derived class, gets or sets the content encoding of the current response. |
|
ContentType | When overridden in a derived class, gets or sets the HTTP MIME type of the current response. |
|
Cookies | When overridden in a derived class, gets the response cookie collection. |
|
Expires | When overridden in a derived class, gets or sets the number of minutes before a page that is cached on the client or proxy expires. If the user returns to the same page before it expires, the cached version is displayed. Expires is provided for compatibility with earlier versions of Active Server Pages (ASP). |
|
ExpiresAbsolute | When overridden in a derived class, gets or sets the absolute date and time at which cached information expires in the cache. ExpiresAbsolute is provided for compatibility with earlier versions of Active Server Pages (ASP). |
|
Filter | When overridden in a derived class, gets or sets a filter object that is used to modify the HTTP entity body before transmission. |
|
HeaderEncoding | When overridden in a derived class, gets or sets the encoding for the header of the current response. |
|
Headers | When overridden in a derived class, gets the collection of response headers. |
|
IsClientConnected | When overridden in a derived class, gets a value that indicates whether the client is connected to the server. |
|
IsRequestBeingRedirected | When overridden in a derived class, gets a value that indicates whether the client is being redirected to a new location. |
|
Output | When overridden in a derived class, gets the object that enables text output to the HTTP response stream. |
|
OutputStream | When overridden in a derived class, enables binary output to the outgoing HTTP content body. |
|
RedirectLocation | When overridden in a derived class, gets or sets the value of the HTTP Location header. |
|
Status | When overridden in a derived class, gets or sets the Status value that is returned to the client. |
|
StatusCode | When overridden in a derived class, gets or sets the HTTP status code of the output that is returned to the client. |
|
StatusDescription | When overridden in a derived class, gets or sets the HTTP status message of the output that is returned to the client. |
|
SubStatusCode | When overridden in a derived class, gets or sets a value that qualifies the status code of the response. |
|
SuppressContent | When overridden in a derived class, gets or sets a value that indicates whether to send HTTP content to the client. |
|
TrySkipIisCustomErrors | When overridden in a derived class, gets or sets a value that specifies whether IIS 7.0 custom errors are disabled. |
Show: