HttpListenerResponse Members
.NET Framework 3.5
Represents a response to a request being handled by an HttpListener object.
The HttpListenerResponse type exposes the following members.
| Name | Description | |
|---|---|---|
|
Abort | Closes the connection to the client without sending a response. |
|
AddHeader | Adds the specified header and value to the HTTP headers for this response. |
|
AppendCookie | Adds the specified Cookie to the collection of cookies for this response. |
|
AppendHeader | Appends a value to the specified HTTP header to be sent with this response. |
|
Close | Overloaded. Sends the response to the client and releases the resources held by this HttpListenerResponse instance. |
|
CopyFrom | Copies properties from the specified HttpListenerResponse to this response. |
|
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the type of the current instance. (Inherited from Object.) |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
Redirect | Configures the response to redirect the client to the specified URL. |
|
SetCookie | Adds or updates a Cookie in the collection of cookies sent with this response. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
|
ContentEncoding | Gets or sets the Encoding for this response's OutputStream. |
|
ContentLength64 | Gets or sets the number of bytes in the body data included in the response. |
|
ContentType | Gets or sets the MIME type of the content returned. |
|
Cookies | Gets or sets the collection of cookies returned with the response. |
|
Headers | Gets or sets the collection of header name/value pairs returned by the server. |
|
KeepAlive | Gets or sets a value indicating whether the server requests a persistent connection. |
|
OutputStream | Gets a Stream object to which a response can be written. |
|
ProtocolVersion | Gets or sets the HTTP version used for the response. |
|
RedirectLocation | Gets or sets the value of the HTTP Location header in this response. |
|
SendChunked | Gets or sets whether the response uses chunked transfer encoding. |
|
StatusCode | Gets or sets the HTTP status code to be returned to the client. |
|
StatusDescription | Gets or sets a text description of the HTTP status code returned to the client. |
| Name | Description | |
|---|---|---|
|
IDisposable.Dispose | Infrastructure. Releases all resources used by the HttpListenerResponse. |